Is there anyway we can directly access a certain(lets say 20th) element in a stringTokenizer. Every now and then I need only a certain element from it and do not need others, yet I have to traverse through all elements.

EDIT: I also want to ignore empty elements.

Am I missing something?

link|improve this question

With a quick look at the javadoc you could have answered this question yourself: no – Mark Rotteveel Nov 15 '11 at 14:36
feedback

3 Answers

up vote 2 down vote accepted

You could try Apache Commons Lang's StringUtils class, which can split a string while ignoring empty elements and handling null strings for you.

A tokenizer would have to read at least n tokens in order to determine which is the n-th one. Thus it might be easier to just create a string array using String#split() or StringUtils.split(...).

Note that I'd prefer StringUtils.split(...) since it doesn't return empty elements if I don't want them, i.e. StringUtils.split(",a,b,c;;d,e,,f",";,"); would return ["a","b","c","d","e","f"] whereas String#split() would return ["","a","b","c","","d","e","","f"]

link|improve this answer
feedback

You can use String.split for that instead of a Tokenizer.

For example:

String[] split = "you string is splitting".split(" ");
split[2]; // random access to 2nd element of split

Of course, you will need to check that your split actually has that many elements before accessing its subindex.

link|improve this answer
Can it split at multiple, different delimiters? – djembo Nov 15 '11 at 14:35
Can it ignore empty elements? – djembo Nov 15 '11 at 14:35
Yes, you can split at any regular expression you want. That will give you a lot of flexibility. – Pablo Santa Cruz Nov 15 '11 at 14:36
@SyedAqeel basically yes, you could, for example, split on , or ; meaning "a,b;c" would result in ["a","b","c"]. – Thomas Nov 15 '11 at 14:36
[download.oracle.com/javase/6/docs/api/java/lang/… - link to split – Guillaume Nov 15 '11 at 14:38
show 1 more comment
feedback

Tokenizer is meant to access elements sequentially (kinda like a LinkedList). You have to go through all the tokens and store them in some kind of random-access collection (ArrayList), or use another method to split your original string / stream.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.