THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 05/04/2006 at 07:10, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 9.x
Platform: Mac OSX ;
Language(s) : C.O.F.F.E.E ;
---------
Imagine I have the following string:
var st="áéíóú";
if I perform a println(st); I get:
áéíóú
Correct!! Now, if I do the following:
println(st[2]);
I get:
237
Ok, I have to convert it to a character, so I do the following:
println(tostring(st[2],"c");
but I get:
Ì
instead of "é". "Ì" was not even in the original string!!
How can I get individual characters from inside a string, correctly evaluated? Thank you very much in advance for any solution.
Rui Batista