Hi all, Hopefully this is a really simple question for someone out there. I have a string that I am parsing that looks like this "some string<token><token>Another string<token>Last string<token>" or at times it could look like this. The place where two tokens are together is where I have a blank string. Using the nextToken() method of StringTokenizer, it seems to skip the blank string, so the second string I get from next token is "Another string" . Am I halucinating, or is this how it is supposed to work. It seems to me that if two tokens are next to each other it would return a blank string. Anyone know how this is really supposed to work? Thanks Shane
Note that StringTokenizer has a constructor that takes a boolean as the last argument. It might provide the function that you are after. Otherwise, use of the java.util.regex package might be more appropriate to solve your problem.Displays: some string Another string Last string [ August 19, 2002: Message edited by: Dirk Schreckmann ]
[I swear, Dirk's code sample wasn't there when I first wrote this...] StringTokenizer is pretty inconvenient for this sort of thing. That boolean argument Dirk mentions modifies its behavior, but it's still not very easy to use. There are various workarounds, but probably the easiest is to use the String split() method in JDK 1.4:
This has two big advantages: (1) it handles multi-character tokens the way most people would expect, and (2) if two tokens are next to one another it returns a blank string for that field. [ August 19, 2002: Message edited by: Jim Yingst ]
"I'm not back." - Bill Harding, Twister
Shane Roylance
Ranch Hand
Joined: Aug 29, 2001
Posts: 72
posted
0
Thank you both, Two solutions that both work great. Thanks again.
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.