Hi
Wonder if there is a change that I could get the/a routine converting or the rules for converting :
ex. Læge -> L \u230 \'e6ge
I want it because I want to do some text handling on a rtf file before loading into Richview.
I guess u have that converting routine allready so if It dont break any copy rights if I use the snip of code .
Br
Kim Pedersen
Structura Aps
string with special char to RTF
-
- Site Admin
- Posts: 17557
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
You can search web for "RTF specification'.
\uN specifies an Unicode character with code N; it may be followed by zero, one or several non-Unicode characters representing alternative for this character. The number of such characters is specified in preceding \ucN keyword.
\'N specifies a character by its code (non-Unicode), the charset of this characters depends on the font.
So, it's not just a simple ord value.
\uN specifies an Unicode character with code N; it may be followed by zero, one or several non-Unicode characters representing alternative for this character. The number of such characters is specified in preceding \ucN keyword.
\'N specifies a character by its code (non-Unicode), the charset of this characters depends on the font.
So, it's not just a simple ord value.