.net - Convert unicode character inside a RTF string to plain text -


i have portion of rtf text doesn't contain formatting contain unicode characters. need convert them plain text in c#.

for example, have block of rtf code

perch\u233\'e9 

that once converted plain text shall read

perché 

i'd need detect unicode characters inside text (like \u233\'e9) , convert them appropriate text.

how can that? don't have entire rtf text these blocks returned scanner.

basically, need detect characters need decode , decode them. thanks.

i find looking @ http://chrisbenard.net/2014/08/20/extract-text-from-rtf-in-.net/

it cleans piece of rtf removing formatting info.


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -