Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the following String of characters

string s = "\\u0625\\u0647\\u0644";

When I print the above sequence, I get:

\u0625\u0647\u062

How can I get the real printable unicode characters instead of this \uxxxx representation?

-- EDIT --

I have found the answer:

s = System.Text.RegularExpressions.Regex.Unescape(s);
share|improve this question
2  
I find the question a bit vague, do you control that string? If so, just remove one of the backslashes, ie. "\u1234\u5678". If not, you should consider using regex with a callback method to parse out the number, convert it to a char, and then return that char as a string – Onkelborg Jul 28 '12 at 12:01
What do you mean by "you can't control the string"? What's your scenario? – Serg Rogovtsev Jul 28 '12 at 12:04
Ok I found the answer: System.Text.RegularExpressions.Regex.Unescape() – MarcAndreson Jul 28 '12 at 12:07

3 Answers

I would suggest the use of String.Normalize. You can find everything here:

http://msdn.microsoft.com/it-it/library/8eaxk1x2.aspx

share|improve this answer
Normalize does Unicode normalization, this is a completely separate concept. – Јοеу Jul 28 '12 at 13:01

Try Regex:

String inputString = "\\u0625\\u0647\\u0644";

var stringBuilder = new StringBuilder();
foreach (Match match in Regex.Matches(inputString, @"\u([\dA-Fa-f]{4})"))
{
    stringBuilder.AppendFormat(@"{0}", 
                               (Char)Convert.ToInt32(match.Groups[1].Value));
}

var result = stringBuilder.ToString();
share|improve this answer

If you really don't control the string, then you need to replace those escape sequences with their values:

Regex.Replace(s, @"\u([0-9A-Fa-f]{4})", m => ((char)Convert.ToInt32(m.Value, 16)).ToString());

and hope that you don't have \\ escapes in there too.

share|improve this answer
The correct answer that works is System.Text.RegularExpressions.Regex.Unescape() – MarcAndreson Jul 28 '12 at 12:07
That does a lot more than just replacing those Unicode escapes ... – Јοеу Jul 28 '12 at 12:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.