Tagged Questions
The singlequotes tag has no wiki summary.
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 ...
6
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 ...
5
votes
4answers
351 views
How to escape single quotes in Bash/Grep?
I want to search with grep for a string that looks like this:
something ~* 'bla'
I tried this, but the shell removes the single quotes argh..
grep -i '"something ~* '[:alnum:]'"' /var/log/syslog
...
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 ("")?
4
votes
2answers
286 views
Javascript string replacement - what's the best way to do this?
I have a problem trying to transform a given input string to a given output string using regular expressions in Javascript. I'm not even sure if what I'm trying to accomplish can be done with regular ...
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
6answers
75 views
how to extract a string enclosed in single quotes in perl?
How do I extract abc from 'abc' using perl regular expression?
I tried
echo "'abc'" | perl -ne 'if(/\'(.*)\'/) {print $1}'
but it shows
-bash: syntax error near unexpected token `('
Thanks in ...
2
votes
2answers
117 views
Bash: Variable Expansion in Single Quote / Double Quote
I want to add a variable ${date} in the following bash script:
ffmpeg -i in.flv -vf drawtext="fontfile=Sans.ttf:text='Today is ${date}':fontsize=6" out.flv
Obviously, ${date} won't expand in single ...
2
votes
3answers
122 views
passing quotes into a javascript function
I had stackoverflow help me with a javascript function in my last question. The function created a div, then appended two form input fields into the newly created div. The function took in 4 ...
2
votes
4answers
117 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
157 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
2answers
438 views
single quote problem in sqlite in android
Hi friends
I am getting the value from webservice .my some of the values are come with single quotes.like this sample's sqlite is not supporting single quotes.so I am replace with double quotes. while ...
2
votes
2answers
429 views
How can I filter out non letters from a text file using the scanner delimiter including the single quote or apostrophe in Java
Pls I want to keep a count of every word from a file, and this count should not include non letters like the apostrophe, comma, fullstop, question mark, exclamation mark, e.t.c. i.e just letters of ...
2
votes
5answers
1k views
Need to escape the quotes of a variable in MVC View to pass as a parameter to Javascript
I have a MVC view in which I have to pass a string variable to javascript, but that string variable has single quotes in it ('). I am trying to do something like this
<a ...
1
vote
1answer
24 views
Issue with simple quote in bat file
I am trying to execute bat file containing a loop.
When executing a loop, the file execution is aborted.
I modified a little the command to understand what is the error and it seems I cannot put ...
1
vote
1answer
30 views
JAXB - Marshalling a single quote character code
I'm using JAXB to generate XML that is uploaded to our Google feed. While testing and comparing this new method's output to the output from the old way that we were doing it (Using JSPs), I noticed ...
1
vote
3answers
95 views
Remove single quotes from python list item
Actually quite simple question:
I've a python list like:
['1','2','3','4']
Just wondering how can I strip those single quotes?
I want [1,2,3,4]
Thx
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
359 views
postgres dblink escape single quote
Related Link:
String literals and escape characters in postgresql
Here is my error:
ERROR: type "e" does not exist
Here is my query:
SELECT *
FROM dblink('host=theHostName port=1234 ...
1
vote
3answers
248 views
PHP: How to escape only single quotes?
I am writing some javascript code that uses a string rendered with PHP. How can I escape single quotes (and only single quotes) in my PHP string?
<script type="text/javascript">
...
1
vote
2answers
247 views
bash quoted variable substitution in sqlplus + heredoc
must be an easy one.
[edit] i am writing a BASH script, using HERE document to redirect some statements to SQL*Plus command-prompt.
sqlplus -s user/pw@db > $TMPFILE <<EOF
SET ECHO OFF;
...
1
vote
1answer
329 views
MS T-SQL 2008: Executing an openrowset sql string will not work
Running this code
DECLARE @SQL VARCHAR(2500) =
'''SELECT z.* from openrowset(''''SQLNCLI'''',''''Server=server;UID=user;PWD=pwd;'''',
''''SELECT distinct x.PackageName
FROM ...
1
vote
1answer
301 views
Quickly remove single quotes from CSV data loaded into a database
I have a database built from CSV files loaded from an external source. For some reason, an ID number in many of the tables is loaded into the CSV / database encased in single quotes - here's a sample ...
1
vote
4answers
135 views
Extracting two strings from quotations in Java using regex?
I'm new to using patterns and looked everywhere on the internet for an explanation to this problem.
Say I have a string: String info = "Data I need to extract is 'here' and 'also here'";
How would I ...
1
vote
4answers
235 views
Is it acceptable to use single quotes around values in HTML attributes? [closed]
Possible Duplicate:
HTML single quotes a “problem”?
As in,
<span class='classname'>Hi</span>
instead of
<span class="classname">Hi</span>
Works, ...
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
2k views
single quotes and double quotes in mysql insert and update query (java)
The ComName is 'a'b'c'"def"j Limited.
i try to add \ before every ' and " but the resultant query that is executed is
"UPDATE empTable SET empId= '25', ComName = 'a'b'c'"def"j Limited where ID=1"
...
0
votes
1answer
47 views
Nesting single quotes
There doesn't seem to be a question for this, and it seems strange that I don't know this. When I program in c/objective-c, must I escape single quotes nested within double quotes.
example
"'" or ...
0
votes
2answers
39 views
How to get a 'clean' list of excel worksheet tab names in R with RODBC?
I'm new to R and even newer to using it with Excel. I want to get a list of all the worksheet names (Notes,Weights,Lengths) in an .xls file. You can see what I'm trying below - the problem is that the ...
0
votes
3answers
27 views
Quotes in PHP classes How to use them?
I want to make variables and methods in php class. And want to use double quotes as I always use not in OOP. But it doesn't work, it shows an error. Why? Here's my code:
class myClass {
public ...
0
votes
2answers
21 views
strange quotation mark behavior
I'm learning SQL using Wampserver, Crimson editor, and the New Boston tutorials. Nothing worked until I change quotation marks:
With SQL commands, regular 'single quotes' don't work, but weird slanty ...
0
votes
3answers
66 views
sed single quotes
I've been banging into escaping single quote's problem using SED (Bash shell).
I need to make
$cfg['Servers'][$i]['password'] = '';
into
$cfg['Servers'][$i]['password'] = 'mypassword';
What ...
0
votes
2answers
48 views
How to store a string containing both single quote( ' ) and double quote( " ) in python
(+CMGL: 2,"REC READ","DD-Etopup",,"11/11/04,12:48:51+22" Hye! How's it going?)
I want to store this sms message in python as a string. How can I do this?
0
votes
1answer
46 views
how do I get rid of single quotes around a doubly quoted string in perl? e.g ' “json_text” '
So I am having a ruby app write json response to the console which is read by another perl program that tries to convert the json response back to a perl hash. Here's my problem:
ruby app outputs the ...
0
votes
2answers
89 views
Perl regex single quote
Can someome help me to run the command below. I also tried to escape the single quotes but no luck.
perl -pi.bak -e 's/Object\.prototype\.myString='q'//' myfile.html
Thanks
0
votes
4answers
57 views
Single quotes turning url into twins?
Just noticed that when using single quotes to echo a basic link in php, the url repeats itself.
<?php
echo '<a href=\"http://example.com\">Link URL - Single Quotes</a><br />';
...
0
votes
5answers
55 views
bash: how do I substring all but what is in single quotes?
Say, the following command:
less some_filename | grep -w 'some_text'
gives the following output:
some_text = 'x.y.z';
being x,y,z numbers like 1.12.5 for instance, how do I strip the output to ...
0
votes
2answers
187 views
PHP - Single quotes or double quotes around SQL query?
Is there any differences in using single quotes VS. using double quotes around a whole SQL query?
Which is better:
This approach (with single quotes):
$username = ...
0
votes
1answer
98 views
Rails 3: Putting a single quote ' in a form (escape character?)
Having trouble figuring out how to put a single quote in my view.
<td><%= link_to 'This guy's blog', blog_path %></td>
Did a quick google trying to figure out what character ...
0
votes
1answer
50 views
Wrapping smarty tags in single quotes
I want my Smarty template with this code:
<h3><a href="http://www.test.com" onclick="RemoteLogger.logGAEvent('Homepage', 'ClickTop10', ...
0
votes
2answers
115 views
CFQUERY Not escaping single quotes properly [closed]
Possible Duplicate:
Coldfusion adding extra quotes when constructing database queries in strings
All,
I am trying to use a getter to reference a bean during an insert. CF is not escaping ...
0
votes
3answers
111 views
Escaping single and double qoutes from a string in ruby
How can we escape single and double qoutes from a string? i want to escape single and double qoutes together i know who to pass them separately but dont know how to pass both of them.
e.g str = "ruby ...
0
votes
3answers
152 views
Ruby: double vs single quotes
I'm really new to RoR and I'm trying to understand if there's a specific time when I should use "" vs ''.
I've been using single quotes most of the time because it's easier to type but I'm not sure ...
0
votes
0answers
145 views
Selecting string with single quotes Issue
I'm having an issue building this stored procedure.
I need to select words out of dictionary using a cursor nd get the count of apperances in a different table. the problem is that there are words ...
0
votes
2answers
240 views
CKEditor breaking custom .NET tags by converting single quotes to double quotes
At the client's request, we just upgraded a custom CMS system for a large site from FCKEditor 2.x to CKEditor 3.5.3.
Inside an ItemTemplate I have a custom UserControl tag in which the attributes are ...
0
votes
4answers
99 views
Help on escaping single quote in PHP
I have an admin page which handles adding of product. I used mysql_real_escape_string on protecting my database from unnecessary characters. But when I get these data from the database (e.g. product ...
0
votes
3answers
330 views
Ruby replace text within single quotes or backticks for html tag
Hello I am trying to build a simple action in Ruby that takes one string like
result = "This is my javascript variable 'var first = 1 + 1;' and here is another 'var second = 2 + 2;' and that's it!"
...
0
votes
1answer
264 views
Strip quotes in PHP for JSON output
I have a string in PHP that contains both single and double quotes.
I am trying to use this string in some JSON output. To do this I need to escape double quotes, slashes, newlines etc.
I thought ...
0
votes
2answers
214 views
PHP - Single Quotes Filtering
i have some HTML code saved in a PHP string
$str = "<font size=2 color=#e0e0e0>you don't have a clue</font>";
i have to write this string to DB so the $str has to become part of the ...
0
votes
5answers
203 views
HTML & PHP : Doublequotes-Singlequotes Issue
in HTML
we can
face='Tahoma'
face="Tahoma"
and in PHP
$name = "Junaid";
$name = 'Junaid';
$names = array('Junaid','Junaid','Junaid');
$names = array("Junaid","Junaid","Junaid");
now all these ...