Top "Quotes" questions

Computer programming languages' facility for embedding text in source code, also known as String literals

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
Finding quoted strings with escaped quotes in C# using a regular expression

I'm trying to find all of the quoted text on a single line. Example: "Some Text" "Some more Text" "Even …

c# regex quotes escaping
how to get data between quotes in java?

I have this lines of text the number of quotes could change like: Here just one "comillas" But I also …

java quotes tokenize
Remove quotes from named environment variables in Windows scripts

I want to store a URL prefix in an Windows environment variable. The ampersands in the query string makes this …

windows batch-file scripting environment-variables quotes
Using quote inside strings in Delphi

Possible Duplicate: How does one escape characters in Delphi string In Delphi a string is contained within a pair of …

string delphi escaping quotes
Write CSV To File Without Enclosures In PHP

Is there a native function or solid class/library for writing an array as a line in a CSV file …

php csv quotes quoting
Command prompt having trouble escaping quotes and braces

I am trying to execute the following line in command prompt: curl -X POST -d '{ "method" : "account_info", "params" : [ { "…

escaping command quotes prompt curly-braces
PyYAML dump format

I know there are a few questions about this on SO, but I couldn't find what I was looking for. …

python python-3.x yaml quotes pyyaml
Single quotes or double quotes for variable concatenation?

Is it better to concatenate a variable (say, $name) into an existing string (say, $string) like this: $string='Hi, my …

php string concatenation quotes