Tagged Questions
17
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 ...
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
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?
2
votes
2answers
806 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" ...
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
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
71 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
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
6answers
4k views
php to extract a string from double quote
I have a string
This is a text, "Your Balance left $0.10", End 0
how can i extract the string in between double quote and have only the text
'Your Balance left $0.10' (without the double quotes)
...
0
votes
1answer
84 views
This script fails to compile, but why?
This ruby script does not run. It responds with
/Users/superhappyfuntime/Desktop/twt.rb:25: undefined local variable or method `xsFEEyGKDPcnhJ5JoPJKg' for main:Object (NameError)
from ...
0
votes
5answers
545 views
remove double quotes from a string in c++
I am stripping off double quotes from a string, but I keep getting this error from the following function. What is the problem here?
void readCSVCell(stringstream& lineStream, string& s) {
...
0
votes
1answer
47 views
googlecl Comnmand line: contain double and single quotes in the title
Any googlecl user here?
I am using the latest version of googlecl and poython 2.5.
The title of my post is "Moon" - Official Trailer. What should I do?
The following code wont work:
$ google ...
0
votes
2answers
88 views
Need to send two kinds of quotes in a string via jQuery
I'm sending some html via jQuery, and in this html are various values that need to be quoted, and in one instance, there's a nested value, so I have to be able to send both kinds of quotes. Here's ...