Questions related to the use of double-quotes in different programming languages.
1
vote
2answers
120 views
insert and update escape charcter, simple and double quotes in the same time in a MySQL table
I am concerned about inserting text in a MySQl table w.
I have to insert/update text that contains characters such as / " and '
The escape character / could be inserted only if the ...
1
vote
5answers
52 views
syntax error in creating a string that contains a variable wrapped in nested quotes
this cause error:
$xml .= "\t<team id=\"$team['id']\"";
this doesn't cause error:
$xml .= "\t<team id=\"\"";
What's the problem?
0
votes
1answer
372 views
How to let jackson generate json string using single quote or no quotes?
For example, I want to generate a json string for ng-style:
<th ng-style="{width:247}" data-field="code">Code</th>
But with jackson, the result is:
<th ...
-6
votes
1answer
56 views
Error inserting characters mysql [closed]
I need to insert text into a MySQL table , no php solution please! I just can't insert text that contain these characters " '
I am using the mysql interface
set global ...
1
vote
1answer
345 views
Create MySQL string that is “safe” (escape double quotes)
I need to insert text into a MySQL table via C#. dbConnect is an adapter I have created myself and ProcessNonQuery only takes a string.
I can't insert text that contain the characters " and '.
This ...
0
votes
3answers
733 views
Remove double quote in json_encode()
I want remove double quote in my json_encode, that is my code:
<?php
require_once 'config.inc.php';
//## Clase Base de Datos
require_once 'Database.class.php';
//## Obtengo los parametros pasados ...
1
vote
1answer
56 views
mysql double-quoted table names
I'm doing a mysql query like:
Select * from "User";
and it returns:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use ...
1
vote
4answers
208 views
How to use bash variable with a quoted string in BASH script
I have a bash variable data='Type=Eatable Fruits="Apple Orange"', and a script (print.sh) simply printing the first, second and third command line argument. When I passed the variable data to the ...
1
vote
2answers
262 views
How to include double quotation in Tcl or Expect commands for passwords or file names with white spaces?
I have two scripts to run in local computer shell
The first script is a BASH shell which calls an expect script inside itself
The bash shell is as follow
BASH SHELL SCRIPT SaveOnRemote.sh
...
0
votes
2answers
102 views
Using sign (") and sign (') in database connection string
My database(Sql compact edition) password is Y6K<dkq2J)[hf/',@K"!IiQA.
When I create it's entity data model connection string in my App config will be:
Edited
<add name="OtherEntities" ... ...
2
votes
1answer
44 views
Why does backwards navigation in IE causes html attribute values to be encased in smart double quotes?
My page loads fine each time in all browsers, except in IE when I use the browser back button it's changing out the double quotes used for the value attibute of the option element to smart double ...
0
votes
1answer
459 views
Quotation marks in VBA
In my current VBA code, I have a query in which I am using Chr(34) to put quotation marks between some of my variables.
I was wondering what alternatives exist to this. This is a simple question, i ...
0
votes
0answers
102 views
FSO WriteFile Methos and Double Quotes with vbscript?
I have a vbscript code, i am trying to get an xml formatted file from web, and parse it, then save its content as some .hta files to the requested locations.
I planned to use this to an intranet .hta ...
0
votes
1answer
48 views
Quote in joomla search
I was working with a joomla site and found that quotes are creating problem with search. Single quotes are printed back with three backslashes with zero result, and double quotes are simply chopped ...
0
votes
1answer
70 views
How do I add different Smart App Banners to various pages on a wordpress site?
My mobile site (wordpress, self-hosted) has multiple pages, each of which should have a unique Smart App Banner to encourage users to download the app relevant to that specific page.
I apologize if ...
0
votes
4answers
236 views
Put a variable between double quotes
I have a small question:
I have a function in javascript.
var func = function(variable)
{
result = variable;
}
If I call
func(rabbit);
I need the result to be "rabbit".
I cannot figure out ...
1
vote
4answers
134 views
C# regular expression for /" at end of string
I have a collection of url's and i need to write regular expression to filter needed content.
/data/43492-someText/"
/data/221639-anotherText/"
/data/116345-differentText/"
...
1
vote
2answers
205 views
R: How to send a text string containing double quotes to function?
I'm having a problem with using double quotes while formatting text strings being sent to functions in R.
Consider an example function code:
foo <- function( numarg = 5, textarg = "** Default ...
3
votes
1answer
147 views
Should I use single or double quotes in my .vimrc file?
I tried to Google this, but wasn't able to find anything.
So here's the question, what's the difference between single ('') and double ("") quotes in Vim? Specifically when used in the .vimrc file.
...
2
votes
3answers
151 views
Replacing an escaped single quote with an escaped double quote in Python
I'm trying to replace all single quotes with double quotes, but leave behind all escaped single quotes. Does anyone know a simple way to do this with python regexs?
Input:
"{ 'name': 'Skrillex', ...
3
votes
2answers
68 views
Is there a way disable lax quoting rules in sqlite?
It appears that SQLite, apparently as a "compatibility feature", parses double quoted identifiers as string literals if no matching column is found.
I understand that it does so for people who write ...
1
vote
1answer
368 views
escape single quotes in string variable in JSP
We've decided to move away from setting strict quote escaping to false for our code, but before we do we're going through and fixing all the jsp strict quote escaping issues. Unfortunately I couldn't ...
1
vote
1answer
113 views
How to workaround Direct Oracle Access failure with table names that lead by numeric characters?
Does anyone know how to make Direct Oracle Access work with queries involving tables that lead with numeric characters.
The original tables were created with double quotes and we form our queries ...
3
votes
1answer
111 views
grep pattern single and double quotes
Is there any difference between enclosing grep patterns in single and double quotes?
grep "abc" file.txt
and
grep 'abc' file.txt
I'm asking since there's no way I could test all possible cases ...
0
votes
2answers
213 views
Create Regex from String stored in variable with escaped characters (Ruby)
I'm trying to build a regex from a string object, which happens to be stored in a variable.
The problem I'm facing is that escaped sequences (in the string) such "\d" doesn't make to the resulting ...
1
vote
1answer
75 views
sed with doublequotes and $
I have a bash script that I use to setup a simple php script on my server. I am stuck with how to correctly change a variable with sed with the script. Here is what I have tried:
echo "Enter Portal ...
2
votes
2answers
273 views
awk script replace 2nd occurrence of string inside double quotes
I'm having trouble making a script to replace a string that is inside double quotes. The files sections looks like this:
"regA~1" : "FF_NODE~94"
"regA~2" : "FF_NODE~105"
"regA~3" : ...
1
vote
3answers
1k views
SQL Updates/Inserts with data with double quotes
I have a database that collects client information using assessments and other tools. Often in the assessments there are double quotes in the data when - as may be expected - a direct quote is ...
-1
votes
1answer
98 views
php rename adds double quotes around file name [closed]
I'm trying to rename some jpegs in a single directory. The code half works in that they are renamed with the correct filenames but for some reason the new filenames are surrounded with double quotes ...
0
votes
0answers
93 views
StrTokenizer: how to escape quote within a quoted section with \"
I know with commons lang StrTokenizer, a quote may be escaped within a quoted section
by duplicating itself, like this:
"text with ""quoted string"" inside"
However, when working with Javascript ...
0
votes
1answer
142 views
single quotes of html attribute automatically get replaced with double quotes
If I use a single quoted attribute in a django template like this:
<button data-json='{"color":"red"}'>click</button>
it automatically gets replaced with:
<button ...
2
votes
2answers
275 views
Double quotes in Jquery
I have read several posts regarding usinq quotes in jQuery and have not been able to form my own query.
I have to check a span tag for a particular string. The string i am searching for is: ...
2
votes
2answers
51 views
how to show single quote in single-quoted text
I have a bash script,
echo 'abcd'
in shell, I want to show ab'c'd and I have tried following approach but without success
echo 'ab\'c\'d'
I am asking is it possible to show single quote in ...
2
votes
2answers
58 views
How to keep strings quoted in bash parameters
I have a Bash script which passes patterns and switches to grep.
#!/bin/bash
foo() {
grep $@ *.txt
}
foo $@
And, of course, myscript SomeText works but myscript "Text1 Text2" does not. Is ...
4
votes
4answers
698 views
CMD nested double quotes in argument
I am having problems with passing arguments to a batch function with nested double quotes.
Here is an example of a batch file:
@SET path_with_space="c:\test\filenamewith space.txt"
@CALL :FUNCTION ...
0
votes
2answers
43 views
Single quotes splits my URls
For example, when i click url below
http://mysite.com/?s=Dominos' books
code below works
$param= $_GET['s'];
$completeurl = 'http://somesite.com/?param1='.trim($param).'&key=987539873';
...
1
vote
1answer
214 views
Concatenate string literals with DirectoryInfo enumeration and adding quotation marks.
This seems like such an obscure question, but here it goes:
Is there a way to concatenate String Literals with a DirectoryInfo enumeration (which contains a file path) while adding quotations around ...
1
vote
1answer
186 views
sublime text 2 macOSX double quote issue
When I do shift key + single/double quote key on my mac using Sublime Text 2 I don't get parseable double quotes.
Here's a picture demonstrating the effect on the id=""'s of some HTML:
Does anyone ...
0
votes
2answers
353 views
GWT - JSNI - passing json object
I have a json like below-
String sdata = "[{ name : "AAPL", data:[[1112832000000,43.56],[1112918400000,43.74],[1113177600000,41.92],[1113264000000,null],[1113350400000,null]], tooltip: ...
1
vote
3answers
448 views
Single Quote / Double Quotes : how to store in a variable
I need to create a variable storing dynamically generated HTML content. I don't know if the string declares attributes using single or double quotes.
html_content=<?=$string;?>;
The problem ...
0
votes
2answers
981 views
Escaping Quotes - Stored Procedure - MS SQL 2008
I am working with a Stored Procedure in MS SQL 2008.
The problem with my code lies somewhere in the UPDATE section. I am trying to replace a string that begins with a single double-quote.
Here is ...
4
votes
2answers
138 views
Block of text with both types of quotes as a string
I'm working with a site that's based on some custom templating system. Let's say that in a template I can use tag [custom_text] which will output the entire block of html like this, defined through ...
0
votes
0answers
109 views
Dealing with quotes in Gedit for windows
In gedit for windows I can't put/type any quotation mark (" '). So it's impossible to type strings. There's some people having the same problems but i can't find any solution yet.
Already try to ...
0
votes
2answers
72 views
Java script : double quote text issue
I have a link which has navigateToBusiness("check & ' ""). Due to this double quote, script is not getting called. The value passed check & ' " is dynamic.
Please help. Thanks in advance.
1
vote
1answer
188 views
Replace character in all database fields
We received an MSSQL database with many tables and fields which we need to clean. One of the things we need to do is remove all quotes (chr(34) and chr(39)) from any text fields.
Looking for a way ...
0
votes
1answer
266 views
Remove double quote only when inside another double quote (VB.NET)
I'm using the library JSON.NET to bring a JSON string from the web, but the problem is that I get a double quote within a string.
the string that comes from the web is as follows
...
0
votes
4answers
292 views
Writing double quotes in javascript string
I'm using a method to iteratively perform a replace in a string.
function replaceAll(srcString, target, newContent){
while (srcString.indexOf(target) != -1)
srcString = ...
4
votes
3answers
535 views
How to avoid double quote escape in C# strings?
In Ruby it's possible to use the strings without the need to escape the double quote in the string, like Q/Some my string with "double quotes"/
Is it possible with C# to use a string without a need ...
0
votes
1answer
89 views
parsing string with keyword = contend using both single or double delimiting quotes
find many
keyword="text with quotes "
but none ignoring double or single quotes keyword="text with
quotes " or keyword='text with quotes'
i produced following code but it ...
-1
votes
1answer
364 views
How to do a proper double or triple bash quote escape?
#!/bin/bash
# this works: java '-XX:OnOutOfMemoryError=nohup bash -c "service jira stop;service jira stop" &' -version
JVM_SUPPORT_RECOMMENDED_ARGS="" # WHAT TO PUT HERE !?! so the last line will ...



