Hi all,
I have a StringTokenizer which is splitting on ",". I want to append some text after the nth column (e.g. 2) is there a way of
going to the 2nd column directly and appending some text?
e.g.
String test = a,b,c,d,e,f,;
StringTokenizer token = new StringTokenizer(test, ",")
Now what I want to is go to token 5 (which is f) and append some text to this token. This is rather than having to do token.nextToken() 5 times,
Is this possible?