I want to split a string with a delimiter white space. but it should handle quoted strings intelligently. E.g. for a string like
"John Smith" Ted Barry
It should return three strings John Smith, Ted and Barry.
|
|
After messing around with it, you can use Regex for this. Run the equivalent of "match all" on:
Edit: Note, this answer still has some edge cases that it does not work with (symbols, unicode, etc). The Java:
Output:
The Java Regex is as follows:
-- -- -- |
|||||||||||||
|
|
Try this ugly bit of code.
|
|||||||||||||
|
|
well, i made a small snipet that does what you want and some more things. since you did not specify more conditions i did not go through the trouble. i know this is a dirty way and you can probably get better results with something that is already made. but for the fun of programming here is the example:
this also checks for words that were not separated with a space after or before the quotes, such as the words "hello" before "John Smith" and after "Basi German". when the string is modified to The string in the example is hello"John Smith" Ted Barry lol"Basi German"hello and prints 1)hello 2)"John Smith" 3)Ted 4)Barry 5)lol 6)"Basi German" 7)hello Hope it helps |
|||||||
|
|
This is my own version, clean up from http://pastebin.com/aZngu65y (posted in the comment). It can take care of Unicode. It will clean up all excessive spaces (even in quote) - this can be good or bad depending on the need. No support for escaped quote.
Sample input for comparison:
(2nd line is empty, 3rd line is spaces, last line is malformed). Please judge with your own expected output, since it may varies, but the baseline is that, the 1st case should return [sdfskjf, sdfjkhsd, hfrif ehref, fksdfj sdkfj fkdsjf, sdf, sfssd]. |
||||
|
|
|
commons-lang has a StrTokenizer class to do this for you, and there is also java-csv library. |
|||
|
|