vote up 0 vote down star

Let's say have a string...

String myString =  "my*big*string*needs*parsing";

All I want is to get an split the string into "my" , "big" , "string", etc. So I try

myString.split("*");

returns java.util.regex.PatternSyntaxException: Dangling meta character '*' near index 0

* is a special character in regex so I try escaping....

myString.split("\\*");

same exception. I figured someone would know a quick solution. Thanks.

flag

75% accept rate
your right \* does work, I was using it from an array... myArray[x].split("\*"); and it was throwing an exception but if I if turn myArray[x] into a string first and then run it it works... thanks for the answers :) – OHHAI Aug 20 at 19:03
i mean double \ in the above comment.... – OHHAI Aug 20 at 19:04
Would you mind giving closing this question by selecting a correct Answer? – extraneon Aug 20 at 19:50

5 Answers

vote up 1 vote down check

split("\\*") works with me.

link|flag
\* works for me too! – Michael Wiles Aug 20 at 19:01
vote up 1 vote down

One escape \ will not do the trick in Java 6 on Mac OSX, as \ is reserved for \b \t \n \f \r \'\" and \\. What you have seems to work for me:

public static void main(String[] args) {
	String myString =  "my*big*string*needs*parsing";
	String[] a = myString.split("\\*");
	for (String b : a) {
		System.out.println(b);
	}
}

outputs:

my
big
string
needs
parsing

link|flag
vote up 0 vote down

myString.split("\\*"); is working fine on Java 5. Which JRE do you use.

link|flag
Single slash won't work; * isn't a special character. I think you made a typo:) – extraneon Aug 20 at 19:48
vote up 0 vote down

You can also use a StringTokenizer.

 StringTokenizer st = new StringTokenizer("my*big*string*needs*parsing", "\*");
 while (st.hasMoreTokens()) {
     System.out.println(st.nextToken());
 }
link|flag

Your Answer

Get an OpenID
or
never shown

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