Top "Double-quotes" questions

Questions related to the use of double-quotes in different programming languages.

json parse error with double quotes

A double quote even if escaped is throwing parse error. look at the code below //parse the json in javascript …

php javascript json parsing double-quotes
What is the difference between String.Empty and "" (empty string)?

In .NET, what is the difference between String.Empty and "", and are they interchangable, or is there some underlying reference …

.net double-quotes string
How to add double quotes in a string literal

Example code: Dim a As String a = 1234,5678,9123 I want to add literal double quotes to the variable a Expected Output: …

vb6 double-quotes
Quotation marks in VBA

In my current VBA code, I have a query in which I am using Chr(34) to put quotation marks between …

vba double-quotes
How to escape double quotes in as a parameter to an NUnit TestCase?

I tried writing the following TestCase for an NUnit test written in VB.net: <TestCase("FirstNode", "<node id=\"…

vb.net nunit escaping testcase double-quotes
Is there any difference between "string" and 'string' in Python?

In PHP, a string enclosed in "double quotes" will be parsed for variables to replace whereas a string enclosed in …

python string quotes double-quotes
php to extract a string from double quote

I have a string: This is a text, "Your Balance left $0.10", End 0 How can I extract the string in between …

php string preg-match preg-match-all double-quotes
simple error due to use of double quotes in a jsp file

I have the following line of code in a JSP File in my web app that is giving an error: &…

jsp escaping double-quotes
Remove double quote in json_encode()

I want remove double quote in my json_encode, that is my code: <?php require_once 'config.inc.php'; //## …

php preg-replace json double-quotes
Omitting the double quote to do query on PostgreSQL

Simple question, is there any way to omit the double quote in PostgreSQL? Here is an example, giving select * from …

postgresql double-quotes