Questions related to the use of double-quotes in different programming languages.
0
votes
4answers
26 views
Sending data from PHP to Python [closed]
I have string data where I need quotes also to be send (").
PHP file:
<?php
$name = '"name"';
$title = 'title';
$art = 'art';
//echo $name;
$output = ...
1
vote
3answers
40 views
How to put css selectors into php generated html code
I'm trying to make one little prototype on php (in which I'm novice) and wordpress, and I can't find whot is wrong whith this:
this code is fine:
<?php
mysql_connect( "localhost", "root");
...
0
votes
2answers
32 views
How to put double quote inside double quote
I have onclick event. And I want to put double quote inside it. for example:
<a
onclick="document.getElementById('my_div').innerHTML='<a href="omer.php">link_2</a>'">
link
...
0
votes
1answer
24 views
NetBeans: change autocomplete attributes from single to double quotes
NB started to put single quotes around my attributes when editing HTML instead of double quotes... up until yesterday it worked just fine... and it is really annoying now... I've must have pressed or ...
0
votes
1answer
30 views
To quote or not to quote, that is the <q-word-not-allowed-in-titles>
When shell programming we need to care for proper quoting, so parameter expansion does the right thing with respect to white space in expansions, or to prevent word splitting getting in the way. The ...
1
vote
2answers
41 views
Matlab - read a specific format line
I have a file which contains data in the following format 0,"20 300 40 12".
How can I read this data with sscanf function such that I store 0 in a separate variable and 20 300 40 12 in another ...
2
votes
2answers
61 views
Passing double quotation marks to a command from Python using the subprocess module
I have a command line program I'm using from within a Python script to take care of stamping a build number onto an executable.
This is the command line program: ...
0
votes
1answer
28 views
hhc Windows help file does not process quotes or double quotes well
I noticed that when compiling a chm file, if the tree contains any articles that have a double quote in its title such as How to use the "?" correctly, it won't process the tree properly. In the ...
0
votes
1answer
68 views
use of double quotes when executing a java program in a shell script
I have a shell script that executes a Java program with parameters returned from a different Java program.
java -cp $wekaPath $(java GetFilter $WandFDir) -i $(pwd)/temp/training"$i"_$arffName.arff ...
2
votes
2answers
71 views
If Statement To Match A String Containing Double Quotations
I've an issue with an if statement in my bash script.
The goal: I need to check a value of clustered, but since it's not a unique name, I decided to try to match the whole string. For example, to ...
0
votes
4answers
62 views
HTML - Importance of Double Quotes in HTML Tags
i have been working with HTML for some time, recently a question popped in my mind that when ever give tags
<input type = "text" name="c-id" />
<input type =text name=c-id />
with or ...
0
votes
1answer
51 views
bash variable string with quotes and double quotes
I need to store a string in a variable on bash.
Here the string...
7;310000000007;1390;30000001390;119;130000000119;;;;;939738;30;ST;DESCRIPTION TEXT TEXT " TEXT ' TEXT text;20130318; 1.40;; ...
0
votes
1answer
102 views
In Postgres, using fetchAll(PDO::FETCH_NUM). How do I get rid of the Double quotes?
How do I fetch the data without double quotes?
Let me explain:
I am using a PostgreSQL database and PHP PDO to fetch data.
The data it returns is :
...
0
votes
1answer
57 views
Double quotes being removed from JSON data when saved via MySQLI
I'm using PHP 5.2 and when I use json_encode the double quotes are escaped (there's a slash behind them). When I try saving it using mysqli_query($db, "INSERT ...") it removes the slashes and when I ...
0
votes
3answers
111 views
RegEx matching double quotes
This pattern keeps giving me errors as if it is not backing out of the double quotes. I am trying to grab "Gen"
string str = "<div type=\"book\" osisID=\"Gen\">";
Match m = Regex.Match(str, ...
0
votes
2answers
62 views
Differences between slashes and ' ' [closed]
Sorry if there is a question that's very similar to this or if there is answer somewhere else but I have a question that's been on my mind lately.
Most people that are versed in programming languages ...
0
votes
2answers
58 views
Funny characters appearing in place of the quotes [duplicate]
Working with PHP and MySQL. When i save a string in the db, on retrieving it later on, it pulls out some funny characters instead of the double and single quotes in the original string. Some of those ...
0
votes
1answer
28 views
Handling/editing special characters in a huge file(>2gb)
I used java to write into and create a csv file. Since certain fields had ',' in them as part of values I enclosed each column with ' "" ' ((like "allen,jade","123","12 street" )). So the values in my ...
-1
votes
4answers
48 views
How to delete from string particular word containing double quotes ''"?
Hello I want to delete <?xml version="1.0" encoding="utf-8"?> from my string containg this and after that lots of other things. How to delete it because of several double quotes I am ...
2
votes
1answer
188 views
Escape single quotes ssh remote command
I read any solutions for escape single quotes on remote command over ssh. But any work fien.
I'm trying
ssh root@server "ps uax|grep bac | grep -v grep | awk '{ print $2 }' > /tmp/back.tmp"
...
-2
votes
4answers
69 views
Double quotes inside array
I have this line of code in my file, but in the return array part, I need to have double quotes inside the array.
If I leave the way it is right now, it crashes.
How can I solve this problem?
...
0
votes
2answers
115 views
Convert Quotes Using htmlspecialchars AND Keep HTML Tags in PHP
I have a hidden input tag that I want its value to have quotes in it. How would I escape the quotes so that I can use it for the value?
HTML
<input type="hidden" name="edited_terms"
...
0
votes
1answer
48 views
Writing an instruction in VBA to place a formula in my worksheet
I have the following formula in which I am trying to generate in an Excel VBA macro. I have the code so that I can place this instruction on the "Total" line for this group of people (i.e., number of ...
-4
votes
2answers
189 views
how put double quotes around php variable [closed]
I need to put double quotes around php variable:
$location = ' AND sub.city='.filter_var($_POST['locations'],FILTER_SANITIZE_STRING);
output should be:
AND sub.city="something"
0
votes
3answers
102 views
RegExp match a single quoted text without quotes - JavaScript
I'm sorry if it is a confusing question. I was trying to find a way to do this but couldn't find it so, if it is a repeated question, my apologies!
I have a text something like this: ...
2
votes
2answers
140 views
Single quotes and double quotes in perl
I'm a newbie in perl and I'm trying to execute an operating system command from a Perl script.
The operating system command is executed with IPC::Open3, and the command is like
$cmd = "mycommand ...
6
votes
1answer
144 views
Scala Regular Expressions (string delimited by double quotes)
I am new to scala. I am trying to match a string delimited by double quotes, and I am a bit puzzled by the following behavior:
If I do the following:
val stringRegex = """"([^"]*)"(.*$)"""
val ...
0
votes
2answers
27 views
link: issue with symbol " (might be an encoding issue)
I have a link generated on my page as
<a href="#" onClick="loadList(5); return false;">5</a>
The problem is that when I click on the link it redirects me to
<a #" ...
0
votes
5answers
179 views
PHP single quotes within the double quote
I am having question about why single quote should be used within the double quote when preparing insert statement. My understanding is variable with double quotes will get interpreted. variable with ...
0
votes
2answers
42 views
php send query to database with quotes not working
I have a mysql query like following
mysql_query("select * from user where name='$name' LIMIT 1");
If suppose my input from client side is 'John' there will be MySQL error in my query.
What is the ...
0
votes
4answers
66 views
How to add php tags inside attribute value?
I'm trying to write meta keywords dynamically with php, so I have such a code , running in WAMP Server localhost/myfile.php :
<meta name="keywords" content="keyword1, keyword2,
<?php
echo ...
0
votes
3answers
128 views
How to ignore \t character inside double quotes using regex?
I am trying to parse a file using regex split, it works well with the '\t' character but some lines have the '\t' inside a field instead of acting as the delimiter.
Like :
G2226 TEST 1 C 29 ...
0
votes
2answers
134 views
Why I get double double-quote on output CSV file in Scriptella?
I'm facing the following issue.
With an etl configuration file I load some data from a Oracle DB Table than I export these data to a CSV file.
However, when a field contains double quote (") this ...
0
votes
1answer
125 views
how to get rid of quotation marks in columns and rows labels in R language?
I have the following data in a file called "data.txt":
pid 1 2 4 15 18 20
1_at 100 200 89 189 299 788
2_at 8 78 33 89 90 99
3_xt ...
1
vote
1answer
53 views
bash variable inside quotes
I want to run the following command
ssh data@server.org "cd /home/data/ ; chmod o+rx directory_$DATE"
$DATE is a bash variable. Is there a way to get it interpreted as a variable?
2
votes
2answers
328 views
Using double quotes in Applescript command Do Shell Script Echo
I'm trying to use applescript to run a command line process. A simplified version of the Applescript looks like this
do shell script "echo bwfmetaedit --INAM=\"name\" --IART=\"artist\" ...
0
votes
2answers
81 views
in php single quotes really more optimized then double quotes?
I'm writing some really time sensitive production application that suppose to serve millions of customers.
the server side is written in php and has some files with around 200 predefined strings
...
0
votes
1answer
122 views
fgetcsv not removing quotes
so I have this:
$handle = fopen($filepath, 'r');
$row = fgetcsv($handle, null, "\t", '"');
whereby $filepath contains a file with the following text:
"\A some text with space."
but then when I ...
1
vote
3answers
157 views
Solr error in entity query with double-quotes
I have connected my oracle schema to solr. The tables and columns in my oracle schema were created with double-quotes(") and I am getting errors when using them below in the entity query portion of ...
1
vote
2answers
209 views
XslCompiledTransform.Transform replaces “"” with real quotes
Doing something like this:
using (XmlWriter myMamlHelpWriter = XmlWriter.Create(myFileStream, XmlHelpExToMamlXslTransform.OutputSettings))
{
...
0
votes
5answers
143 views
Escape double quotes in string
Double qoutes can be escaped like this
string test = @"He said to me , ""Hello World"".How are you ?";
But this involves adding character " to the string.
Is there a C# function or other method to ...
2
votes
2answers
124 views
How can I adjust the margins of quote symbols added with CSS
I'm trying to add quotation marks using only CSS. This works, but I'd like to lower the quotation marks with respect to the content inside them. This is how it currently looks:
The HTML:
<p ...
0
votes
1answer
44 views
PHP Syntax error caused by qutoes
I have been trying to mediate this error by playing around with the quotes but for some reason I just can't get passed the errors.
This is my code :
<form ...
1
vote
4answers
139 views
Single quote with variable value in a double quote string
I have a string that looks like this:
"count( IF (my_id = 'mykey',value,100)) mykey"
However, the value 'mykey' that goes right after my_id is in a variable called $which_value;
I fail to see how ...
0
votes
2answers
67 views
Counting quotes and formatting source code
I'm doing some basic formatting for my Lua code. Like adding missing whitespace around math operands etc.
Now I realized it's a really bad idea to do these formattings if I'm inbetween quotation ...
-2
votes
1answer
90 views
Erlang a special value doule quote
When i run my program,a error hanppened, and when i look into the log, appears this {k,3108,"s"},{k,3109,"}, how can a one double quote as a varible's value.
1
vote
2answers
98 views
bash string as argument for executable in quotes
im sure this is simple. ive' tried a number of possibilities with no luck.
im seeking to execute the following in shell.
./secondexecutable -t "A string with spaces" -s "Another string with spaces" ...
1
vote
3answers
87 views
Single quotes vs double quotes
I am trying to split a string by three consecutive newlines ("\n\n\n"). I was trying str.split('\n\n\n') and it didn't work, but when I changed to str.split("\n\n\n"), it started to work. Could anyone ...
0
votes
1answer
210 views
php escaping double quotes
Hi I'm having some difficulty with escaping double quoutes from a string.
Here's my situation:
I get the the result set from the database then I apply utf8_encode to it because there's ...
0
votes
10answers
471 views
How to assign double inverted (") comma to string in c#? [duplicate]
Possible Duplicate:
How to add doublequotes to a string that is inside a variable?
I am trying to assign a double inverted comma to string in c# as below
string abc = " " ";
that ...





