0
votes
1answer
34 views

Escaping of double quotes in rails 3.2

I have recently ungraded to rails 3.2 and getting a problem with the escaping of double quotes. I have a string like this options = "class=\"input\" disabled=\"disabled\" ...
0
votes
2answers
47 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 ...
2
votes
2answers
100 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
2answers
64 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 ...
1
vote
3answers
94 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
213 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 ...
1
vote
1answer
376 views

Create MySQL string that is “safe” (escape double quotes)

I need to insert text into a MySQL table via C#. dbConnect is an adapter I have created myself and ProcessNonQuery only takes a string. I can't insert text that contain the characters " and '. This ...
0
votes
1answer
75 views

How do I add different Smart App Banners to various pages on a wordpress site?

My mobile site (wordpress, self-hosted) has multiple pages, each of which should have a unique Smart App Banner to encourage users to download the app relevant to that specific page. I apologize if ...
3
votes
2answers
69 views

Is there a way disable lax quoting rules in sqlite?

It appears that SQLite, apparently as a "compatibility feature", parses double quoted identifiers as string literals if no matching column is found. I understand that it does so for people who write ...
0
votes
0answers
97 views

StrTokenizer: how to escape quote within a quoted section with \"

I know with commons lang StrTokenizer, a quote may be escaped within a quoted section by duplicating itself, like this: "text with ""quoted string"" inside" However, when working with Javascript ...
0
votes
2answers
1k views

Escaping Quotes - Stored Procedure - MS SQL 2008

I am working with a Stored Procedure in MS SQL 2008. The problem with my code lies somewhere in the UPDATE section. I am trying to replace a string that begins with a single double-quote. Here is ...
4
votes
2answers
147 views

Block of text with both types of quotes as a string

I'm working with a site that's based on some custom templating system. Let's say that in a template I can use tag [custom_text] which will output the entire block of html like this, defined through ...
-1
votes
1answer
407 views

How to do a proper double or triple bash quote escape?

#!/bin/bash # this works: java '-XX:OnOutOfMemoryError=nohup bash -c "service jira stop;service jira stop" &' -version JVM_SUPPORT_RECOMMENDED_ARGS="" # WHAT TO PUT HERE !?! so the last line will ...
3
votes
3answers
133 views

chinese charactors eat other charactor when lua loadstring

when i load data in lua by loadstring, some magic chinese charactors fail. RawData = '{a="a朶b"}' Data = loadstring("return " .. RawData)() that's because: "朶" 's ascii char(gbk encoding) is 0x96 ...
0
votes
3answers
2k views

Regex escape questionmark and double quotes

I have data with several occurrencies of the following string: <a href="default.asp?itemID=987"> in which the itemID is always different. I am using C# and I want to get all those itemIDs ...
0
votes
1answer
907 views

How can i escape double quotes from a string in php?

I've been trying to solve this but no luck. This is my code. $replace1 =str_replace('hreflang=\"'.$arr['variantslang1hid'].'\" ...
1
vote
1answer
3k views

How to escape double quotes in as a parameter to an NUnit TestCase?

I tried writing the following TestCase for an NUnit test written in VB.net: <TestCase("FirstNode", "<node id=\"FirstNode\">")> Public Sub GetNode_GivenSomeNodeId_ReturnCorrectNode(ByVal ...
0
votes
4answers
493 views

Issue with Double Quotes in java

I am getting three types of value from the database when I am fetching value from a field. All values are with double quotes. Those values are "Fitness Head, Fiteness " Head and Fitness Head". I ...
1
vote
1answer
2k views

PHP JSON String, escape Double Quotes for JS output

I'm creating a JSON string from a PHP array. I've encoded it using json_encode(). $json_array = array( 'title' => 'Example string\'s with "special" characters' ); $json_decode = json_encode( ...
1
vote
2answers
6k views

simple error due to use of double quotes in a jsp file

I have the following line of code in a JSP File in my web app that is giving an error: <jsp:setProperty name="db" property="userName" value="<%=request.getParameter("userName")%>"/> The ...
0
votes
4answers
78 views

php having issue with including javascript and quotes?

Here is my code: $buffer .= '<legend>'.$thisField.'</legend><input type="text" name="'.$thisField.'" id="'.$thisField.'"/> <a href="javascript:;" ...
1
vote
2answers
843 views

Escapaing double-quotes problem in mixed batch/powershell script running

Here's what I'm trying to do: @ECHO OFF CALL powershell -ExecutionPolicy RemoteSigned -Command "$sh = new-object -com 'Shell.Application'; $sh.ShellExecute('powershell', '-NoExit -Command "$path = ...
2
votes
2answers
2k 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" ...
0
votes
2answers
415 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 ...
2
votes
5answers
1k views

String Containing double quotes is inserted incomplete in DB

Updated The textarea i have provided in the form takes the user input as strings String Containing double quotes is inserted incomplete in DB.. I have a string inserted in text area as "Don't ...
0
votes
1answer
219 views

Write MIME file with double-quotes

I am manually creating a multi-part MIME-formatted file and submitting it to an SMTP pickup directory. When the email arrives in my inbox it has lost the opening double-quote of any double-quote ...
0
votes
5answers
1k views

Remove escaped quotes from Wordpress posts

In my content I'm giving my <h3> tags id's for the sake of direct linking. This is how it looks in the post editor: <h3 id="h3-title">H3 Title</h3> So that I can directly link ...