Link to home
Start Free TrialLog in
Avatar of srinivas_vemla
srinivas_vemla

asked on

String Escape Sequences

I have a code segment that creates XML nodes and returns all the XML as a string. It works fine on the code segment end, but when I receive this string from the calling function, escape sequences are added before all double-quotes.

For example:
<node1 att1="val1" />

becomes
<node1 att1=\"val1\" />

Any idea how I can skip that escaping?

Thanks,
Srinivas
ASKER CERTIFIED SOLUTION
Avatar of Ceiled
Ceiled
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of srinivas_vemla
srinivas_vemla

ASKER

Yes Ceiled,

I was looking at it in the debugger and now when i move it to a text box it looks good...

Thanks for the reply