Top "Quotes" questions

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

Dealing with quotes in Windows batch scripts

In a Windows batch file, when you do the following: set myvar="c:\my music & videos" the variable myvar …

windows batch-file quotes scripting
How to keep quotes in Bash arguments?

I have a Bash script where I want to keep quotes in the arguments passed. Example: ./test.sh this is "…

bash quotes
Difference between using ' and "?

Possible Duplicates: Difference between the use of double quote and quotes in python Single quotes vs. double quotes in Python …

python quotes
How to use single quote inside an echo which is using single quote

First of all, i have gone through the related questions.. haven't found any answer.. I m using this code to …

php echo quotes
Can Python remove double quotes from a string, when reading in text file?

I have some text file like this, with several 5000 lines: 5.6 4.5 6.8 "6.5" (new line) 5.4 8.3 1.2 "9.3" (new line) so the last term is a …

python csv file-io quotes strip
How do I replace double quotes with single quotes

How can I replace "" (I think it's called double quotes) with '' (I think its called single quotes) using PHP?

php regex quotes
Difference between single quotes and double quotes in Javascript

I know that in PHP, the only difference between double quotes and single quotes is the interpretation of variable inside …

javascript quotes
When to wrap quotes around a shell variable?

Could someone tell me whether or not I should wrap quotes around variables in a shell script? For example, is …

linux bash shell unix quotes
How to display double quotes in JavaScript

On html page if I give name in double quotes then it is not getting reflected on page. It displays …

javascript double quotes
How do you strip quotes out of an ECHO'ed string in a Windows batch file?

I have a Windows batch file I'm creating, but I have to ECHO a large complex string, so I'm having …

windows batch-file sed quotes echo