StringTokenizer? Convert the String to a char[] and iterate over that? Something else?
|
|
|
I use a for loop. And use
That's what I would do. It seems the easiest to me. As far as correctness goes, I don't believe that exists here. It is all based on your personal style. |
|||||||||||||||||||
|
|
Two options
or
The first is probably faster, then 2nd is probably more readable. |
|||||||||||||||
|
|
Note most of the other techniques described here break down if you're dealing with characters outside of the BMP (Unicode Basic Multilingual Plane), i.e. code points that are outside of the u0000-uFFFF range. This will only happen rarely, since the code points outside this are mostly assigned to dead languages. But there are some useful characters outside this, for example some code points used for mathematical notation, and some used to encode proper names in Chinese. In that case your code will be:
The |
|||||||
|
|
I agree that StringTokenizer is overkill here. Actually I tried out the suggestions above and took the time. My test was fairly simple: create a StringBuilder with about a million characters, convert it to a String, and traverse each of them with charAt() / after converting to a char array / with a CharacterIterator a thousand times (of course making sure to do something on the string so the compiler can't optimize away the whole loop :-) ). The result on my 2.6 GHz Powerbook (that's a mac :-) ) and JDK 1.5:
As the results are significantly different, the most straightforward way also seems to be the fastest one. Interestingly, charAt() of a StringBuilder seems to be slightly slower than the one of String. BTW I suggest not to use CharacterIterator as I consider its abuse of the '\uFFFF' character as "end of iteration" a really awful hack. In big projects there's always two guys that use the same kind of hack for two different purposes and the code crashes really mysteriously. Here's one of the tests:
|
|||
|
|
|
There are some dedicated classes for this:
|
|||||||||||||
|
|
If you're have Guava on your classpath, following is also a pretty readable alternative. Guava even has a pretty sensible custom List implementation for this case so this shouldn't be unefficient either.
|
|||
|
|
|
I wouldn't use The javadoc says:
|
|||||||
|
|
See The Java Tutorials: Strings.
Put the length into |
|||
|
|
|
StringTokenizer is totally unsuited to the task of breaking a string into its individual characters. With
But StringTokenizer doesn't use regexes, and there's no delimiter string you can specify that will match the nothing between characters. There is one cute little hack you can use to accomplish the same thing: use the string itself as the delimiter string (making every character in it a delimiter) and have it return the delimiters:
However, I only mention these options for the purpose of dismissing them. Both techniques break the original string into one-character strings instead of char primitives, and both involve a great deal of overhead in the form of object creation and string manipulation. Compare that to calling charAt() in a for loop, which incurs virtually no overhead. |
|||
|
|