> Can someone tell me how you can used Farsi Unicode text within Java
> programming code. I am trying to test:
> 
> sTemp.endsWith(",")
> 
> where sTemp is a string containing Farsi Unicode text (coming from a
> Unicode text file) and instead of "," I actually have the Farsi comma
> character.

Does it match correctly if you did this instead:

sTemp.endsWith("\u060c");

If so, I would suspect that your editor is not using unicode encoding for
the farsi comma you typed in.

_______________________________________________
PersianComputing mailing list
[EMAIL PROTECTED]
http://lists.sharif.edu/mailman/listinfo/persiancomputing

Reply via email to