Questions tagged [double-quotes]

Queries regarding the implementation of quotation marks in various coding platforms.

An ASMX web service encountering an unescaped double quote within a parameter while processing JSON data

Within my HTTP REQUEST, a valid JSON string is present with a double quote in the middle of the name "jo"hn" escaped. This was captured by Fiddler Web Debugger. {"name":"firstName","value":"jo"hn"}, It's important to note that the request submission pr ...

Utilize PHP to transform various forms of smart quotes

I have been working on a function to convert all types of smart quotes to regular quotes within text. However, the function I have put together still appears to be lacking proper support and design. How can I successfully convert all quote characters? fun ...