Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

String str = "u0054u0068u0069u006eu006bu0050u0061u0064";

String[] strArray = str.split(""); 

but this error occured.

Exception in thread "main" java.util.regex.PatternSyntaxException: Unexpected internal error near index 1

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
392 views
Welcome To Ask or Share your Answers For Others

1 Answer

it should be

String[] strArray = str.split("");

the reason why is because in Regex, has special meaning so you need to escape it into \.

and in java, \ should be equal to ""


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...