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

java - String.replaceAll single backslashes with double backslashes

I'm trying to convert the String something into the String \something\ using replaceAll, but I keep getting all kinds of errors. I thought this was the solution:

theString.replaceAll("", "");

But this gives the below exception:

java.util.regex.PatternSyntaxException: Unexpected internal error near index 1
Question&Answers:os

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

1 Answer

0 votes
by (71.8m points)

The String#replaceAll() interprets the argument as a regular expression. The is an escape character in both String and regex. You need to double-escape it for regex:

string.replaceAll("", "");

But you don't necessarily need regex for this, simply because you want an exact character-by-character replacement and you don't need patterns here. So String#replace() should suffice:

string.replace("", "");

Update: as per the comments, you appear to want to use the string in JavaScript context. You'd perhaps better use StringEscapeUtils#escapeEcmaScript() instead to cover more characters.


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

...