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

learn more… | top users | synonyms (1)

93
votes
9answers
16k views

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 or Localization issues around equality that String.Empty will ensure are ...
34
votes
5answers
54k views

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 var testJson = '{"result": ["lunch", "\"Show\""] }'; var tags = JSON.parse(testJson); ...
6
votes
2answers
793 views

Does Java have the '@' character to escape string quotes?

My string has double quotes in it, in C# I would do: string blah = @"this is my ""text"; how would I do that in Java?
3
votes
7answers
25k views

How to add doublequotes to a string that is inside a variable?

I have variable like: string title = string.empty; My need is that whatever string is passed to it I have to display the content inside a div with in a doublequotes .So I have written something ...
2
votes
3answers
2k views

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 A;, I will retrieve ERROR: relation "a" does not exist, and I would have to give ...
8
votes
6answers
3k views

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 'single quotes' will not. In Python, does this also apply?
6
votes
1answer
210 views

Scala Regular Expressions (string delimited by double quotes)

I am new to scala. I am trying to match a string delimited by double quotes, and I am a bit puzzled by the following behavior: If I do the following: val stringRegex = """"([^"]*)"(.*$)""" val ...
0
votes
3answers
947 views

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'; //## Clase Base de Datos require_once 'Database.class.php'; //## Obtengo los parametros pasados ...
7
votes
5answers
445 views

perl encapsulate single variable in double quotes

In Perl, is there any reason to encapsulate a single variable in double quotes (no concatenation) ? I often find this in the source of the program I am working on (writen 10 years ago by people that ...
4
votes
4answers
814 views

CMD nested double quotes in argument

I am having problems with passing arguments to a batch function with nested double quotes. Here is an example of a batch file: @SET path_with_space="c:\test\filenamewith space.txt" @CALL :FUNCTION ...
4
votes
7answers
2k views

How to replace text using sed or awk?

I have the following json file: { "last_modified": { "type": "/type/datetime", "value": "2008-04-01T03:28:50.625462" }, "type": { "key": "/type/author" }, "name": ...
3
votes
4answers
871 views

Perl Regex: How to remove quotes inside quotes from CSV line

I've got a line from a CSV file with " as field encloser and , as field seperator as a string. Sometimes there are " in the data that break the field enclosers. I'm looking for a regex to remove these ...
3
votes
3answers
369 views

Accomodate two types of quotes in a regex

I am using a regex to replace quotes within in an input string. My data contains two 'types' of quotes - " and “ There's a very subtle difference between the two. Currently, I am explicitly ...
2
votes
2answers
101 views

Passing double quotation marks to a command from Python using the subprocess module

I have a command line program I'm using from within a Python script to take care of stamping a build number onto an executable. This is the command line program: ...
2
votes
2answers
2k views

Powershell: inconsistent/strange behavior with quote parsing?

all! I'm trying to compile a program using PowerShell, but the command is being parsed strangely. This command executes correctly in cmd.exe: dmd -od"bin" -of"bin\convHull.exe" -I"src" ...
1
vote
1answer
377 views

Create MySQL string that is “safe” (escape double quotes)

I need to insert text into a MySQL table via C#. dbConnect is an adapter I have created myself and ProcessNonQuery only takes a string. I can't insert text that contain the characters " and '. This ...
1
vote
1answer
225 views

Concatenate string literals with DirectoryInfo enumeration and adding quotation marks.

This seems like such an obscure question, but here it goes: Is there a way to concatenate String Literals with a DirectoryInfo enumeration (which contains a file path) while adding quotations around ...
1
vote
1answer
190 views

sublime text 2 macOSX double quote issue

When I do shift key + single/double quote key on my mac using Sublime Text 2 I don't get parseable double quotes. Here's a picture demonstrating the effect on the id=""'s of some HTML: Does anyone ...
1
vote
2answers
2k views

Special characters and double quotes issue in PHP

I have this kind of value in my db column, Judge-Fürstová Mila "Ut enim ad minim veniam" I use PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8" to handle all my special characters, class ...
1
vote
1answer
3k views

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=\"FirstNode\">")> Public Sub GetNode_GivenSomeNodeId_ReturnCorrectNode(ByVal ...
1
vote
1answer
2k views

PHP JSON String, escape Double Quotes for JS output

I'm creating a JSON string from a PHP array. I've encoded it using json_encode(). $json_array = array( 'title' => 'Example string\'s with "special" characters' ); $json_decode = json_encode( ...
1
vote
2answers
225 views

learning about single and double quotes (.),("), and (')

Can you tell me what is the different using (')single quotes inside (")quotes and (")quotes inside (')single quotes? and at concat, what is the meaning of this '".$bla."' I still can not distinguish ...
0
votes
1answer
44 views

PHP Syntax error caused by qutoes

I have been trying to mediate this error by playing around with the quotes but for some reason I just can't get passed the errors. This is my code : <form ...
0
votes
0answers
113 views

Dealing with quotes in Gedit for windows

In gedit for windows I can't put/type any quotation mark (" '). So it's impossible to type strings. There's some people having the same problems but i can't find any solution yet. Already try to ...
0
votes
1answer
915 views

How can i escape double quotes from a string in php?

I've been trying to solve this but no luck. This is my code. $replace1 =str_replace('hreflang=\"'.$arr['variantslang1hid'].'\" ...
0
votes
5answers
2k views

remove double quotes from a string in c++

I am stripping off double quotes from a string, but I keep getting this error from the following function. What is the problem here? void readCSVCell(stringstream& lineStream, string& s) { ...