Top "Single-quotes" questions

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

How do I escape a single quote in SQL Server?

I'm trying to insert some text data into a table in SQL Server 9. The text includes a single quote('). …

sql sql-server tsql delimiter single-quotes
Usage of the backtick character (`) in JavaScript

In JavaScript, a backtick† seems to work the same as a single quote. For instance, I can use a backtick …

javascript backticks single-quotes template-strings backquote
Adding single quotes to a cell using VBA

I am trying to add single quotes to values in a column by using Chr(39), but I am only getting …

excel vba single-quotes
Escaping single quotes in REDSHIFT SQL

I've lots of string values containing single quotes which I need to insert to a column in REDSHIFT table. I …

sql escaping amazon-redshift sql-insert single-quotes
Add single quotes to a string

I try to add single quotes to a string but don't see how to do it. For instance I would …

r string concatenation single-quotes
How does the leading dollar sign affect single quotes in Bash?

I need to pass a string to a program as its argument from the Bash CLI, e.g program "don't …

bash quotes double-quotes single-quotes
Ansible escaping double quotes and single quotes

I would like insert a nrpe command in the nrpe.cfg with this ansible command check_tomcat_threads.pl -H …

escaping ansible double-quotes single-quotes
Python how convert single quotes to double quotes to format as json string

I have a file where on each line I have text like this (representing cast of a film): [{'cast_id': 23, …

python json regex double-quotes single-quotes
Are double "" and single '' quotes (always) interchangeable in R?

This is perhaps rather a minor question... but just a moment ago I was looking through some code I had …

r quotes double-quotes single-quotes
Scala: Replacing double quotes with single quotes

How do you replace single quotes with double quotes in Scala? I have a data file that has some records …

scala dataframe spark-dataframe double-quotes single-quotes