Im reading in a file and each line is as follows

Derek Simons, Jason baker
Jack Smith, Rob Thomson

The problem is with my tokenizer

StringTokenizer st = new StringTokenizer(line, ",");
    while(st.hasMoreTokens()){ 
       System.out.println(st.nextToken());
    }

the output is

Derek Simons
 Jason baker
Jack Smith
 Rob Thomson

how can I get rid of that extra blank space? so that the output would be

Derek Simons
Jason baker
Jack Smith
Rob Thomson

Any help is appreciated thanks!

link|improve this question

53% accept rate
What did you try so far to figure this out? Google? String javadoc maybe? – Samit G. Feb 15 '11 at 7:29
feedback

4 Answers

up vote 1 down vote accepted

I don't know which programming language you are using, but in many languages there is something called Trim(). so you do s.Trim();, where s is the string. That will remove all blanks

link|improve this answer
Yeah try: System.out.println(st.nextToken().trim()); – muddybruin Feb 15 '11 at 7:20
Wow haha.. thanks! that did the trick :) – eNetik Feb 15 '11 at 7:20
feedback

You can avoid having to trim each string manually if the input is always in the form you describe:

String[] tokens = line.split(",\\s*")

Now tokens will contain each name without leading spaces in the second token.

link|improve this answer
feedback

Did you consider using the .trim method?

Returns a copy of the string, with leading and trailing whitespace omitted.

link|improve this answer
feedback

You could use trim() or even just specify you StringTokenizer's delimiter as ", " (a comma followed by a space) instead of just ",".

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.