Hello, all,
I've got a query flattened into a JSON string. The query does contain double-quotes in some of the data, so I try to strip that out. I'm replacing " with "
HOWEVER, the action page is using regex replacement to convert back to ", but it isn't completely working.
I've tried the following with ReplaceNoCase() and REReplaceNoCase() - neither is working.
<cfset form.XLJson = ReplaceNoCase(form.XLJson,'"','"','ALL') />
The above code will take:
Smith, John "Johnny"
turn it into
Smith, John "Johnny"
BUT, what it changes back to is
Smith, John ";Johnny";
Am I missing something, here?
V/r,
^_^