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
284 views
in Technique[技术] by (71.8m points)

Java split on ^ (caret?) not working, is this a special character?

In Java, I am trying to split on the ^ character, but it is failing to recognize it. Escaping ^ throws code error.

Is this a special character or do I need to do something else to get it to recognize it?

String splitChr = "^";
String[] fmgStrng = aryToSplit.split(splitChr); 
See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)

The ^ is a special character in Java regex - it means "match the beginning" of an input.

You will need to escape it with "\^". The double slash is needed to escape the , otherwise Java's compiler will think you're attempting to use a special ^ sequence in a string, similar to for newlines.

^ is not a special escape sequence though, so you will get compiler errors.

In short, use "\^".


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

...