Top "Quotes" questions

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

How to output MySQL query results in CSV format?

Is there an easy way to run a MySQL query from the Linux command line and output the results in …

mysql csv quotes
How to run an EXE file in PowerShell with parameters with spaces and quotes

How do you run the following command in PowerShell? C:\Program Files\IIS\Microsoft Web Deploy\msdeploy.exe -verb:sync …

powershell parameters quotes exe spaces
Escape quotes in JavaScript

I'm outputting values from a database (it isn't really open to public entry, but it is open to entry by …

javascript quotes escaping
How to enter quotes in a Java string?

I want to initialize a String in Java, but that string needs to include quotes; for example: "ROM". I tried …

java string quotes escaping
How can I escape a double quote inside double quotes?

How can I escape double quotes inside a double string in Bash? For example, in my shell script #!/bin/bash …

bash quotes
Insert text with single quotes in PostgreSQL

I have a table test(id,name). I need to insert values like: user's log, 'my user', customer's. insert into …

postgresql insert special-characters quotes
Expansion of variables inside single quotes in a command in Bash

I want to run a command from a bash script which has single quotes and some other commands inside the …

bash shell variables quotes
How to execute a bash command stored as a string with quotes and asterisk

I try to execute the following command : mysql AMORE -u username -ppassword -h localhost -e "SELECT host FROM amoreconfig" I …

bash scripting escaping quotes
Convert XmlDocument to String

Here is how I'm currently converting XMLDocument to String StringWriter stringWriter = new StringWriter(); XmlTextWriter xmlTextWriter = new XmlTextWriter(stringWriter); xmlDoc.WriteTo(…

c# string escaping quotes xmldocument
How to escape single quotes in MySQL

How do I insert a value in MySQL that consist of single or double quotes. i.e This is Ashok's …

mysql string quotes