Tagged Questions
The doublequotes tag has no wiki summary.
23
votes
5answers
28k views
json parse error with double quotes
A double quote even if escaped is throwing parse error.
look at the code below
//parse the json in javascript
var testJson = '{"result": ["lunch", "\"Show\""] }';
var tags = JSON.parse(testJson); ...
18
votes
7answers
5k views
Difference between single quote and double quote string in php
I'm not a major in PHP programming but I'm a little confused why I see some codes in PHP with string placed in single quote and sometimes in double quote. I just know in .NET, or C language, if it is ...
7
votes
6answers
3k views
HTML: Single vs Double quotes (' vs ")
I've always used single quotes when writing my HTML by hand. I work with a lot of rendered HTML which always uses double quotes. This allows me to determine if the HTML was written by hand or ...
6
votes
6answers
2k views
Is there any difference between “string” and 'string' in Python?
In PHP, a string enclosed in "double quotes" will be parsed for variables to replace whereas a string enclosed in 'single quotes' will not. In Python, does this also apply?
5
votes
2answers
158 views
Difference between single and double quotes in bash
In Bash shell scripting, what is the difference between single quotes ('') and double quotes ("")?
5
votes
2answers
395 views
Does Java have the '@' character to escape string quotes?
My string has double quotes in it, in C# I would do:
string blah = @"this is my ""text";
how would I do that in Java?
4
votes
4answers
204 views
Adding quotes to argument in C++ preprocessor
I'd like to pass the name of an include file as a compiler argument so that I can modify a large number of configuration parameters. However, my C++ build is via a makefile like process that removes ...
4
votes
6answers
1k views
What's the difference between single and double quotes in Perl?
I am just begining to learn Perl. I looked at the beginning perl page and started working.
It says:
The difference between single quotes and double quotes is that single quotes mean that their ...
3
votes
1answer
150 views
Why does jQuery templates add double quotes to some strings
Background
I'm working with jQuery templates, ASP.Net MVC Razor views and Twitter.
Problem
Using jQuery templates with some strings automatically results in those strings being wrapped in "
...
3
votes
4answers
140 views
Why is a variable name followed by an underscore not evaluated correctly during string interpolation in Perl?
Why is a variable name followed by an underscore not evaluated correctly during string interpolation in Perl?
my $i = 3;
print "i = $i\n"; # works, prints "i = 3"
print "_i = _$i\n"; # works, prints ...
3
votes
3answers
157 views
replacing doublequotes in csv
I've got nearly the following problem and didn't find the solution. This could be my CSV file structure:
1223;"B630521 ("L" fixed bracket)";"2" width";"length: 5"";2;alternate A
1224;"B630522 ("L" ...
3
votes
6answers
600 views
need help! sed or awk how to replace text
i have a json file, some data like this:
{"last_modified": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "type": {"key": "/type/author"}, "name": "National Research ...
3
votes
2answers
1k views
Encode double quotes inside XML element using LINQ to XML
I'm parsing a string of XML into an XDocument that looks like this (using XDocument.Parse)
<Root>
<Item>Here is "Some text"</Item>
</Root>
Then I ...
2
votes
1answer
43 views
ASMX web method receiving unescaped double quote in parameter, JSON
My HTTP REQUEST contains a valid JSON string having the double quote in the middle of the name "jo\"hn" escaped as seen here (captured by Fiddler Web Debugger)
{"name":"firstName","value":"jo\"hn"},
...
2
votes
2answers
139 views
Powershell: inconsistent/strange behavior with quote parsing?
all! I'm trying to compile a program using PowerShell, but the command is being parsed strangely.
This command executes correctly in cmd.exe:
dmd -od"bin" -of"bin\convHull.exe" -I"src" ...
2
votes
4answers
118 views
Best quotes practice when it doesn't matter?
If I want to something like:
foo="bar baz"
foo='bar baz'
Is it best practice to use double-quotes or single-quotes?
2
votes
4answers
158 views
Nesting quotes in bash
I want to something like this in bash:
alias foo='bar="$(echo hello world | grep \"hello world\")"; echo $bar;'; foo
Expected output: hello world
Ouput: grep: world": No such file or directory
...
2
votes
1answer
143 views
Remove double quotes from header in SED
i would like to remove double quotes from the header row only. The data below is in a txt file with tab-delimiter. Thanks!
"$sedol" "$cusip" "$rbss_id"
"2877365" "22122P101" "53301020"
...
2
votes
2answers
1k views
how to check if a character is equal to double quote in java
I want to check the value of a char to see if it is double quote or not in Java. How can I do it?
2
votes
2answers
807 views
Unterminated string literal in escaped html within JavaScript string
I'm seeing an issue with some javascript string literals, when encoding this value:
Unencoded
<!-- Start ValueClick Media 300x250 Code for Test Tag -->
<script language="javascript" ...
2
votes
1answer
181 views
How to remove double quotes from a variable in a batch file?
var may be double quoted:
set var="Very long text"
or without quotes:
set var=Some_Text
I would like to get the unquoted text, i.e. Very long text in the first case and Some_Text in the ...
2
votes
5answers
332 views
String Containing double quotes is inserted incomplete in DB
Updated
The textarea i have provided in the form takes the user input as strings
String Containing double quotes is inserted incomplete in DB..
I have a string inserted in text area as
"Don't ...
2
votes
2answers
141 views
Print array variables when using or not using double quotes
When I learning to print array variables, I found the white space inserted when double quoter used. Snippet code as below. Could you please tell me why?
#!/usr/bin/perl -w
use strict;
use warnings;
...
2
votes
2answers
1k views
Administrator's shortcut to batch file with double quoted parameters
Take an excruciatingly simple batch file:
echo hi
pause
Save that as test.bat. Now, make a shortcut to test.bat. The shortcut runs the batch file, which prints "hi" and then waits for a keypress ...
1
vote
2answers
66 views
How to replace all double quotes to single quotes using jquery?
I need to replace all double quotes to single quotes using jquery.
How I will do that.
I tested with this code but its not working properly.
newTemp = newTemp.mystring.replace(/"/g, "'");
1
vote
1answer
153 views
Split string on commas but ignore commas within double-quotes?
I have some input that looks like the following:
A,B,C,"D12121",E,F,G,H,"I9,I8",J,K
The comma-separated values can be in any order. I'd like to split the string on commas; however, in the case ...
1
vote
1answer
63 views
Django cookies place double quotes around email address
On my login script it creates a cookie for the user logging in of their email address and password. Problem I am having is when the email address is set it puts the entire email address between double ...
1
vote
1answer
84 views
json_decode with values containing double quotes
I am trying to use an editable table and have it working except for when the array values passed to the save function contain double quotes. The error occurs at foreach loop
foreach($saveArray as ...
1
vote
2answers
45 views
With python sqlite3 module, how to deal with fields that contain double-quotes?
I was trying to access a database that has data that contains "" such as:
Tom "is" a cat.
When I use this code:
myData = 100; myKey = 'Tom "is" a cat.'
myCursor.execute('UPDATE MyTable ...
1
vote
0answers
72 views
Why is string shown with two sets of double quotes in Eclipse
This problem is driving me nuts! I have declared a static string in a constants class as follows:
public static final String REGISTRATION_USERNAME_TAKEN = "Username is already in use. Please choose a ...
1
vote
1answer
75 views
C++ Command Line Argument Identification
I need to be able to tell if the final argument in my command line is surrounded in double quotes or not. If it's in double quotes, I treat it as a string. If it's not, I need to treat it as a file ...
1
vote
2answers
81 views
regular expression to find all substrings inside double quotes php
I have a big database that has fields of paragraphs that are formatted like this:
["This is the first sentence", "This is the second sentent", "This is the third sentence", "This is the fourth ...
1
vote
2answers
551 views
simple error due to use of double quotes in a jsp file
I have the following line of code in a JSP File in my web app that is giving an error:
<jsp:setProperty name="db" property="userName" value="<%=request.getParameter("userName")%>"/>
The ...
1
vote
3answers
230 views
Omitting the double quote to do query on PostgreSQL
Simple question, is there any way to omit the double quote in PostgreSQL?
Here is an example, giving select * from A;, I will retrieve ERROR: relation "a" does not exist, and I would have to give ...
1
vote
1answer
292 views
Regex to match quoted strings with negative lookbehind (.NET)
I am trying to create a .NET Regex that will match quoted strings in VB.NET source code, but excluding certain unwanted strings, such as strings in XML comments and region labels etc.
Here's a data ...
1
vote
1answer
273 views
C# Regex; Double Quote Issue
I'm a little stumped here. I had this method, which was working fine until just recently:
internal static bool IsZplFormat(string szString)
{
var regex = new Regex(@"\^XA.*\^XZ\\r\\n");
...
1
vote
2answers
265 views
How to force Hibernate-Envers to use quotes around fields name?
I have a table with properties defined like this :
@Column(name="\"SERIAL#\"")
When Hibernate inserts data, everything works fine.
But it comes to Hibernate-Envers(HE), HE forgets to surround the ...
1
vote
7answers
274 views
php turn line break into semicolon
I have a csv file with this:
software
hardware
educational
games
languages
.
.
.
I need a new csv file with:
software;hardware;educational;games;languages;....
How can I do that?
I'm doing:
...
1
vote
1answer
152 views
Ajax Json won't allow double qoutes results
I got a problem on this code. json wont allow double quote results. ex. if i have a result (A sad "Story") json wont parse it.
$('.loader1').show();
$.ajax({
url: ...
1
vote
2answers
463 views
Double Quotes in NSURL request
Apache CouchDB requires the key to be enclosed by double quotes: ", however when escaped the resulting nsurl returns (null) when being logged to the console and the resulting response (null) as well, ...
1
vote
1answer
89 views
How to read files in a directory, open it and get the words for each line in perl?
i'm trying to write a perl script, first it opens a directory (There are more then one files in the directory), second it reads the files in the directory, then line by line puts the words in an array ...
1
vote
2answers
400 views
Escapaing double-quotes problem in mixed batch/powershell script running
Here's what I'm trying to do:
@ECHO OFF
CALL powershell -ExecutionPolicy RemoteSigned -Command "$sh = new-object -com 'Shell.Application'; $sh.ShellExecute('powershell', '-NoExit -Command "$path = ...
1
vote
5answers
156 views
How to quote values in php statement? Monday brain freeze
I have a piece of php code that reads values from a database resultset, shoves them into an array, and writes them to a CSV file. I need to force each value to be surrounded by double quotes when it ...
1
vote
1answer
89 views
How can I use regular expressions and javascript to split the following command into tokens:
filter -n ""function(file) { return file.owner == "john"; }""
should be parsed into the following array:
[ 'filter',
'-n',
'function(file) { return file.owner == "john"; }' ]
1
vote
2answers
139 views
learning about single and double quotes (.),("), and (')
Can you tell me what is the different using (')single quotes inside (")quotes and (")quotes inside (')single quotes? and at concat, what is the meaning of this '".$bla."' I still can not distinguish ...
1
vote
2answers
222 views
Using <div class=“something”> inside a jQuerty replaceWith() function
I am working on a PHP document which has jQuery code in it. I am using a replaceWith() functions to strip outer divs and replace with span. it seems I can only replace it with <span> and not ...
1
vote
1answer
314 views
Turn off automatic quote insertion in Visual Studio 2010
I am editing a huge number of legacy ASP pages that have been converted over to C#. One problem is that the HTML attributes need to be adjusted to correct some double quote problems.
My problem is ...
1
vote
3answers
466 views
PHP mssql_query double quotes cannot be used
In java-jdbc, I can easily run the following SQL (NOTE the double quotes around columns and table names)
Select
cus."customer_id" ,
cus."organisation_or_person" ,
...
1
vote
1answer
172 views
How do I make VS2008 place double quotes around intellisense offerings
I am in the HTML editor (building an ASP.NET MVC view) and coding up HTML.
The editor is handy with intellisense for various attributes, but when I select whatever VS2008 offers, it never places ...
1
vote
3answers
1k views
double quote escaping in os.system on windows
I want to escape '"' and all other wild chars in program name and arguments, so I try to double quote them. and I can do this in cmd.exe
C:\bay\test\go>"test.py" "a" "b" "c"
hello
...