Tagged Questions

0
votes
3answers
46 views

double quote escaping in os.system on windows

Hi, 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 …
1
vote
6answers
59 views

Insert double quotes multiple times into string

Hi Folks I have inherited a flat html file with a few hundred lines similar to this: <blink> <td class="pagetxt bordercolor="#666666 width="203 colspan="3 height="20> </blink> So …
0
votes
0answers
13 views

Automate escape of double quotes

I have the following variable being dynamically set by user generated content: $variable = <a href="http://www.mysite.com/article">This Article</a>; When this variable is set, I then …
1
vote
2answers
105 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" …
1
vote
8answers
878 views

SQL putting two single quotes around datetime fields and fails to insert record

I am trying to INSERT into an SQL database table, but it doesn't work. So I used the SQL server profiler to see how it was building the query; what it shows is the following: declare @p1 int set …
0
votes
3answers
209 views

Apache Ant command line arguments without double quotes - is it possible?

Today I had to add a task to an Apache Ant file. The command line should have been something like myprogram --param1 --param2 path\somefile 2> path\logfile The problem with this was that if I …
1
vote
5answers
454 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) …
1
vote
3answers
2k 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); …
0
votes
2answers
105 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 …