StringTokenizer for hebrew text

How can I use StringTokenizer for hebrew text?(Direction from right to left)
[97 byte] By [maxima2] at [2007-9-26 2:27:05]
# 1
Construct an array or List and then interate from last downto first.
valjok at 2007-6-29 9:40:50 > top of Java-index,Core,Core APIs...
# 2

Don't you store the first (right-most) character of Hebrew text in position 0 of the String, and so on, and then tell the display components to display your data from right to left? If you did that then an ordinary StringTokenizer would work.

If you don't, then why not? Are you trying to work around some problem? (I could certainly believe that.)

DrClap at 2007-6-29 9:40:50 > top of Java-index,Core,Core APIs...