Hi,
How can I escape " and pass the below string for HTTP Request call. Currently it’s failing due to double quotation found after backslash
Hi,
How did you check it? As backslash means escape character in C#, it might be able to ignore it if you have checked it at Locals panel.
Can you try to output it using Messagebox etc?
Regards,
i checked it at Locals panel. Messagebox works fine, however i’d need to proceed with another HTTPRequest API call, and it’s failing
This means there is no backslash in the string.
i’d need to proceed with another HTTPRequest API call, and it’s failing
I guess there is another reason to fail. Can you check your request in detail?
Regards,
there’s no issue with string that doesn’t have " character. others work perfectly
Hi,
Is the double quote for delimiter or content?
If latter we need to escape it like \"
. For now, can you try to use replace as the following, if you use VB mode?
yourString.Replace("""","\""")
Regards,
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.