Tagged Questions
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
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
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 ...
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
...
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
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
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
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
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
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
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 ...
0
votes
2answers
185 views
Mixing Single and Double Quotations in Bash
Alright, I have a script that takes a few arguments, runs data, and then rsyncs the data out to a different server. The problem is that to run the data, I have to take one of the arguments and then ...
-1
votes
3answers
81 views
javascript quotes problem inside array elementt
<html>
<body>
<script type="text/javascript">
var i=blue;
var mycars = new Array();
mycars[0] = "'Sa'+i+'b'";
for (i=0;i<mycars.length;i++)
{
document.write(mycars[i] + ...