Top "Quotes" questions

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

How to replace all double quotes to single quotes using mysql replace?

I need to replace all double quotes to single quotes using mysql query. How can I do that. My sql …

mysql sql escaping quotes mysql5
How to quotes in bash function parameters?

What I'd like to do is take, as an input to a function, a line that may include quotes (single …

bash function arguments quotes
Indirect variable assignment in bash

Seems that the recommended way of doing indirect variable setting in bash is to use eval: var=x; val=foo …

bash eval variable-assignment quotes
Nesting quotes in JavaScript/HTML

How do you nest quotes in HTML beyond the second level? As far as I know, there are only 2 types …

javascript html quotes
HTML:Use quotes within quotes within quotes

I'm stuck with this problem: <body onload="document.body.innerHTML="<script>alert('hi')</script>""> …

javascript html string quotes double-quotes
How to remove extra indentation of Python triple quoted multi-line strings?

I have a python editor where the user is entering a script or code, which is then put into a …

python quotes multiline strip
Backslashes in single quoted strings vs. double quoted strings

If I add a backslash+space to the start of double and single quoted strings, I get different results: "\ text" …

ruby string quotes literals backslash
Using python csv writer without quotations

I'm trying to write a list of strings like below to a file separated by the given delimiter. res = [u'123…

python csv quotes double-quotes
PHP explode the string, but treat words in quotes as a single word

How can I explode the following string: Lorem ipsum "dolor sit amet" consectetur "adipiscing elit" dolor into array("Lorem", "ipsum", "…

php quotes explode str-replace