J
Jonathan Seidner
Hi,
I have a program which contains a textbox,
in this text box the user types this string:
"\ub7c6\ub9d1\ubbd9\ubdc8\ubfcb\uc1b2\uc3a7\uc586\uc7a9\uc9b0\ucbfb"
this is NOT a unicode string because the textbox obviously wraps the text
so it does not include any escape characters, if i were to put it in code of
the program like this: string s = "\ub7c6\ub9d1\ubbd9" it would have
represented
a unicode text.
my question is this:
how could i translate a text which i assume would look like so:
"\\ub7c6\\ub9d1\\ubbd9"
in the debugger (because it was entered via the textbox control)
to the actual unicode string?
this is very confusing, took me a while to understand why things
did not work as expected.
thanks,
Jonathan.
I have a program which contains a textbox,
in this text box the user types this string:
"\ub7c6\ub9d1\ubbd9\ubdc8\ubfcb\uc1b2\uc3a7\uc586\uc7a9\uc9b0\ucbfb"
this is NOT a unicode string because the textbox obviously wraps the text
so it does not include any escape characters, if i were to put it in code of
the program like this: string s = "\ub7c6\ub9d1\ubbd9" it would have
represented
a unicode text.
my question is this:
how could i translate a text which i assume would look like so:
"\\ub7c6\\ub9d1\\ubbd9"
in the debugger (because it was entered via the textbox control)
to the actual unicode string?
this is very confusing, took me a while to understand why things
did not work as expected.
thanks,
Jonathan.