Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How would you parse the values in a string, such as the one below?

12:40:11  8    5                  87

The gap between numbers varies, and the first value is a time. The following regular expression does not separate the time component:

str.split("\\w.([:]).")

Any suggestions?

share|improve this question
what is "properly"? – Stephen Jun 22 '10 at 1:20
Is the file fixed-width delimited? – jskaggz Jun 22 '10 at 1:21
1  
If you can explain why you think "\\w.([:])." would work, I can elaborate on where the logic went wrong. Right now I'm not even sure how you came to that. – polygenelubricants Jun 22 '10 at 1:32
what is the expected output? [12,40,11,8,5,87] ? – OscarRyz Jun 22 '10 at 1:33

2 Answers

up vote 8 down vote accepted

The regex \s+ matches one or more whitespaces, so it will split into 4 values:

"12:40:11", "8", "5", "87"

As a Java string literal, this pattern is "\\s+".

If you want to get all 6 numbers, then you also want to split on :, so the pattern is \s+|:. As a Java string literal this is "\\s+|:".

References


On Scanner

Instead of using String.split, you can also use java.util.Scanner, and useDelimiter the same as what you'd use to split. The advantage is that it has int nextInt() that you can use to extract the numbers as int (if that's indeed what you're interested in).

Related questions

share|improve this answer
Yes, this is correct, "\\s+" works for me. Thank you very much! – jgg Jun 22 '10 at 16:28

See the Pattern doc and String API.

Using

str.split("\\s+");

will yield

[ '12:40:11', '8', '5', '87' ]

or

str.split("\\s+|:");

should yield

[ '12', '40', '11', '8', '5', '87' ]
share|improve this answer
Thanks, "\\s+" works. – jgg Jun 22 '10 at 16:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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