Questions tagged [double-quotes]

Questions related to the use of double-quotes in different programming languages.

1212 questions
0
votes
1 answer

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 the string that I'm searching for, and I wish to…
buck1112
  • 504
  • 8
  • 24
0
votes
2 answers

Java script : double quote text issue

I have a link which has navigateToBusiness("check & ' ""). Due to this double quote, script is not getting called. The value passed check & ' " is dynamic. Please help. Thanks in advance.
Vaandu
  • 4,857
  • 12
  • 49
  • 75
0
votes
1 answer

Remove double quote only when inside another double quote (VB.NET)

I'm using the library JSON.NET to bring a JSON string from the web, but the problem is that I get a double quote within a string. the string that comes from the web is as…
seba123neo
  • 4,688
  • 10
  • 35
  • 53
0
votes
4 answers

Writing double quotes in javascript string

I'm using a method to iteratively perform a replace in a string. function replaceAll(srcString, target, newContent){ while (srcString.indexOf(target) != -1) srcString = srcString.replace(target,newContent); return srcString; } But it doesn't…
0
votes
1 answer

parsing string with keyword = contend using both single or double delimiting quotes

find many keyword="text with quotes " but none ignoring double or single quotes keyword="text with quotes " or keyword='text with quotes' i produced following code but it does not work function…
user1557188
  • 41
  • 1
  • 5
0
votes
2 answers

Integration PHP + Javascript

I have a problem with integrations in the php code in javascript within single quotes I need to put the variable $video that will get the id of a YT video, instead of the id of the video **VARIABLEVIDEOHER**E, but I tried all ways to put single and…
0
votes
2 answers

String replace does not work in javascript (with double quotes)

Please look at the following code, If i do not perform the "Sanitary" steps in the function the code does not replace the string values. can some one help me understand this? Complete code :