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

using java regular expression , and I found the following example

Print\-Services

I am wondering why \-, does it escape the -?

See Question&Answers more detail:os

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

1 Answer

You don't need to escape a '-' in a regex. It is only a meta-character inside a [...] character class specification.

If that was a Java String literal, then the first '' would escape the 2nd '' and that would give - in the regex ... which is nonsense1.

If that was NOT a String literal, then the first '' is escaping the 2nd '' in the regex. That is NOT nonsense. It means match a backslash character.


1 - It is, however, legal nonsense. The javadoc says: "A backslash may be used prior to a non-alphabetic character regardless of whether that character is part of an unescaped construct." The redundant backslash would be ignored.


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