I have a String that I want to split based on punctuation marks and whitespace. What should be the regex argument to the split() method?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
Code with some weirdness-handling thrown in: (Notice that it skips empty tokens in the output loop. That's quick and dirty.) You can add whatever characters you need split and removed to the regex pattern. (tchrist is right. The \s thing is woefully implemented and only works in some very simple cases.)
|
|||||||||||||||
|
|
try something like this:
|
|||
|
|
would be a good start for english. You need to improve it based on what you see in your data, and what language you're using. |
|||
|