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

Categories

0 votes
395 views
in Technique[技术] by (71.8m points)

java - split("\") and error

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

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

1 Answer

0 votes
by (71.8m points)

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 ""


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...