I m facing problem in splitting string. Actually i want to split a string with some seperator but without loosing that seperator.

when we use somestring.split(String seperator) method in java it splits the string but removes the seperator part from string.It should not happen. I want result like below: Example::string1="Ram-sita-laxman";

     seperator="-";

     string1.split(seperator);

output : [Ram, sita, laxman]

but i want the result like :[Ram, -sita, -laxman]

is there a way to get output like this?

link|improve this question
feedback

4 Answers

string1.split("(?=-)");

This works because split actually takes a regular expression. What you're actually seeing is a "zero-width positive lookahead".

I would love to explain more but my daughter wants to play tea party. :)

Edit: Back!

To explain this, I will first show you a different split operation:

"Ram-sita-laxman".split("");

This splits your string on every zero-length string. There is a zero-length string between every character. Therefore, the result is:

["", "R", "a", "m", "-", "s", "i", "t", "a", "-", "l", "a", "x", "m", "a", "n"]

Now, I modify my regular expression ("") to only match zero-length strings if they are followed by a dash.

"Ram-sita-laxman".split("(?=-)");
["Ram", "-sita", "-laxman"]

In that example, the ?= means "lookahead". More specifically, it mean "positive lookahead". Why the "positive"? Because you can also have negative lookahead (?!) which will split on every zero-length string that is not followed by a dash:

"Ram-sita-laxman".split("(?!-)");
["", "R", "a", "m-", "s", "i", "t", "a-", "l", "a", "x", "m", "a", "n"]

You can also have positive lookbehind (?<=) which will split on every zero-length string that is preceded by a dash:

"Ram-sita-laxman".split("(?<=-)");
["Ram-", "sita-", "laxman"]

Finally, you can also have negative lookbehind (?<!) which will split on every zero-length string that is not preceded by a dash:

"Ram-sita-laxman".split("(?<!-)");
["", "R", "a", "m", "-s", "i", "t", "a", "-l", "a", "x", "m", "a", "n"]

These four expressions are collectively known as the lookaround expressions.

Bonus: Putting them together

I just wanted to show an example I encountered recently that combines two of the lookaround expressions. Suppose you wish to split a CapitalCase identifier up into its tokens:

"MyAwesomeClass" => ["My", "Awesome", "Class"]

You can accomplish this using this regular expression:

"MyAwesomeClass".split("(?<=[a-z])(?=[A-Z])");

This splits on every zero-length string that is preceded by a lower case letter ((?<=[a-z])) and followed by an upper case letter ((?=[A-Z])).

This technique also works with camelCase identifiers.

link|improve this answer
1  
+1: Wow, never knew regexps are so powerful! – Rekin Dec 11 '10 at 13:00
Thanks Adam,even i never known the power of regexps – sag Dec 11 '10 at 14:10
1  
+1 Very elegant solution – I82Much Dec 11 '10 at 15:42
@Rekin: If you think that's wacky, check the other examples I added! – Adam Paynter Dec 11 '10 at 16:47
@sag: You're welcome, I'm glad to help! If this solved your problem, you may accept it by clicking on the check mark to the left of the answer. :) – Adam Paynter Dec 11 '10 at 16:48
feedback

A way to do this is to split your string, then add your separator at the beginning of each extracted string except the first one.

link|improve this answer
feedback
seperator="-";
String[] splitstrings = string1.split(seperator);
for(int i=1; i<splitstring.length;i++)
{
   splitstring[i] = seperator + splitstring[i];
}

that is the code fitting to LadaRaider's answer.

link|improve this answer
feedback

It's a bit dodgy, but you could introduce a dummy separator using a replace function. I don't know the Java methods, but in C# it could be something like:

string1.Replace("-", "#-").Split("#");

Of course, you'd need to pick a dummy separator that's guaranteed not to be anywhere else in the string.

link|improve this answer
dangerous (even if I have done it often :-) – Renaud Mar 6 at 14:54
feedback

Your Answer

 
or
required, but never shown

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