AM using string tokenizer to delimit the string response by ^

12/30/2011 12:00:00 AM^President^^^159^True^True^True^True^True^False^False^True^True^3/18/2011 12:00:00 AM^True^Jujama, Inc.^^^^True^True

but the problem is when ^ delimiter consecutively its skipping that one and adding in to array. But i want to add space if two ^delimiters comes.

How to do that?

My code is:

 StringTokenizer tokens = new StringTokenizer(partId, "^");

              while(tokens.hasMoreTokens()){

                 String value=tokens.nextToken();
                 userValues.add(value);
                 System.out.println("..."+value);

              }   
link|improve this question

In general, favour Scanner over StringTokenizer if possible. – Adriaan Koster Jul 14 '11 at 10:49
feedback

2 Answers

up vote 2 down vote accepted

User string.split("^") instead. Split receives regex, so you can do almost what you want within one line.

link|improve this answer
AM using string.split("^") but its not splitting anything – Udaykiran Jul 14 '11 at 11:23
1  
I used string.split("\\^") regex now its working.. – Udaykiran Jul 14 '11 at 11:30
feedback

Your Answer

 
or
required, but never shown

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