I'm trying to split a string with all non-alphanumeric characters as delimiters yet Java's String.split() method discards the delimiter characters from the resulting array. Is there a way to split a string like the "\W" regex pattern does, yet keep the delimiters?
|
I don't really like the other way, where you get an empty element in front and back. A delimiter is usually not at the beginning or at the end of the string, thus you most often end up wasting two good array slots. Edit: Fixed limit cases. Commented source with test cases can be found here: http://snippets.dzone.com/posts/show/6453 |
|||||||||||
|
|
You want to use lookarounds, and split on zero-width matches. Here are some examples:
And yes, that is triply-nested assertion there in the last pattern. Related questions
See also |
|||
|
|
|
I got here late, but returning to the original question, why not just use lookarounds?
output:
EDIT: What you see above is what appears on the command line when I run that code, but I now see that it's a bit confusing. It's difficult to keep track of which commas are part of the result and which were added by
I hope that's easier to read. Thanks for the heads-up, @finnw. |
|||||
|
|
I had a look at the above answers and honestly none of them I find satisfactory. What you want to do is essentially mimic the Perl split functionality. Why Java doesn't allow this and have a join() method somewhere is beyond me but I digress. You don't even need a class for this really. Its just a function. Run this sample program: Some of the earlier answers have excessive null-checking, which I recently wrote a response to a question here: http://stackoverflow.com/users/18393/cletus Anyway, the code:
|
|||
|
|
I like the idea of StringTokenizer because it is Enumerable. So I implemented a StringTokenizerEx which is an Iterable, and which takes a true regexp to split a string. A true regexp means it is not a 'Character sequence' repeated to form the delimiter:
But the regexp o+ will return the expected result when splitting "aooob"
To use this StringTokenizerEx:
The code of this class is available at DZone Snippets. As usual for a code-challenge response (one self-contained class with test cases included), copy-paste it (in a 'src/test' directory) and run it. Its main() method illustrates the different usages. Note: (late 2009 edit) The article Final Thoughts: Java Puzzler: Splitting Hairs does a good work explaning the bizarre behavior in
The Google common-library Guava contains also a Splitter which is:
So it may worth being checked out. From their initial rough documentation (pdf):
|
||||
|
|
|
I don't know of an existing function in the Java API that does this (which is not to say it doesn't exist), but here's my own implementation (one or more delimiters will be returned as a single token; if you want each delimiter to be returned as a separate token, it will need a bit of adaptation):
|
|||
|
|
|
If you can afford, use Java's replace(CharSequence target, CharSequence replacement) method and fill in another delimiter to split with. Example: I want to split the string "boo:and:foo" and keep ':' at its righthand String.
Important note: This only works if you have no further "newdelimiter" in your String! Thus, it is not a general solution. But if you know a CharSequence of which you can be sure that it will never appear in the String, this is a very simple solution. |
|||
|
|
|
I know this is a very-very old question and answer has also been accepted. But still I would like to submit a very simple answer to original question. Consider this code:
OUTPUT:
I am just using word boundary |
|||
|
|
|
Fast answer: use non physical bounds like \b to split. I will try and experiment to see if it works (used that in PHP and JS). It is possible, and kind of work, but might split too much. Actually, it depends on the string you want to split and the result you need. Give more details, we will help you better. Another way is to do your own split, capturing the delimiter (supposing it is variable) and adding it afterward to the result. My quick test:
Result:
A bit too much... :-) |
||||
|
|
|
Code Challenge! (Community wiki post) Implement a class which is able to split a String, while getting the delimiter before the next split elements. Uses a real regexp (and not a character sequence). The end result must look like: StringTokenizerEx usages:
'null' to be splitted with regexp 'null' gives []
'' to be splitted with regexp 'null' gives []
'null' to be splitted with regexp '' gives []
'' to be splitted with regexp '' gives []
'abcd' to be splitted with regexp 'ab' gives [ab], 'cd', []
'abcd' to be splitted with regexp 'cd' gives [], 'ab', [cd]
'abcd' to be splitted with regexp 'abcd' gives [abcd]
'abcd' to be splitted with regexp 'bc' gives [], 'a', [bc], 'd', []
'abcd efg hi j' to be splitted with regexp '[ \t\n\r\f]+' gives [], 'abcd', [ ], 'efg', [ ], 'hi', [ ], 'j', [] ''ab','cd','eg'' to be splitted with regexp '\W+' gives ['], 'ab', [','], 'cd', [','], 'eg', [']
'boo:and:foo' to be splitted with regexp ':' gives [], 'boo', [:], 'and', [:], 'foo', [] 'boo:and:foo' to be splitted with regexp 'o' gives [], 'b', [o], '', [o], ':and:f', [o], '', [o] 'boo:and:foo' to be splitted with regexp 'o+' gives [], 'b', [oo], ':and:f', [oo] Delimiters are within square brackets [...] |
||||
|
|
|
Tweaked Pattern.split() to include matched pattern to the list Added
Full source
|
||||
|
|
|
I don't know Java too well, but if you can't find a Split method that does that, I suggest you just make your own.
Its not too elegant, but it'll do. |
|||
|
|
protected by Alan Moore Oct 29 '11 at 10:33
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.