Hello,
I have this string: "\"Blah \'Blah\' Blah\""
. There is another string inside it. How do I convert that into: Blah 'Blah' Blah
? (you see, unescaping the string.) This is because I get a SQL Where query:
WHERE blah="Blah \'Blah\' Blah"
When I parse this, I get the string above (still inside quotes and escaped.) How would I extract that, un-escaping the string? Or is ther some much easier way to do this? Thanks,
Isaac