0
votes
How do convert unicode escape sequences to unicode characters in a .NET string
Refactored a little:
Regex regex = new Regex (@"\\[uU]([0-9A-F]{4})", RegexOptions.IgnoreCase);
string line = "...";
line = regex.Replace (line, match => ((char)int.Parse (match. …
