regarding this topic: https://stackoverflow.com/questions/4416425/how-to-split-string-with-some-separator-but-without-removing-that-separator-in-j#=
I want to know how to make from this string:
String string1="Ram-sita-laxman";
seperation like this:
["Ram", "-" , "sita", "-", "laxman"]
How can i achieve that?