Page 1 of 1

Problem with using Unicode

Posted: Tue Feb 02, 2010 3:52 pm
by alex298
Hello,

I have problem in using Unicode with RR.

I read some RR Unicode document, the following code will put the unicode text into field "display"
set the unicodetext of fld "display" to url ("binfile:myfile_chi.txt")
The following codes works the same:
put url ("binfile:myfile_chi.txt") into tData
set the unicodeText of field "display" to tData
However I actually wish to do some data manipulation before putting the unicode data into a field, For example:
put url ("binfile:myfile_chi.txt") into tData
// set the unicodeText of tData to true here...
// do some math calculation with tData...
// put the match result to field "display"
How can I do that?

Thanks and best regards

Alex