Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the following code:

public static void main(String[] args){
    StringBuilder content = new StringBuilder("abcd efg h i. -  – jk(lmn) qq zz.");
    String patternSource = "[.-–]($| )";
    Pattern pattern = Pattern.compile(patternSource);
    Matcher matcher = pattern.matcher(content);
    System.out.println(matcher.replaceAll(""));
}

where patternSource character class consist of dot, minus sign and \u2013 character (something like long dash). Upon execution in gives me

abcefi-  jk(lmn) qzz

If I change the order of symbols in my character class in any way, it begans to work normally, and gives

abcd efg h i jk(lmn) qq zz

What the hell?

Tested under JDK/JRE 1.6.0_23

share|improve this question

1 Answer

up vote 4 down vote accepted

If you have an unescaped hyphen in a character class it has a special meaning as a range of characters: e.g. [A-Z] means all the characters between A and Z.

An exception to this is when the hyphen is at the start or end of the character class, in which case it is treated literally and matches only a hyphen.

share|improve this answer
Thank you, question answered – Frozen Spider Feb 10 '11 at 6:53
Mark this answer as answered by clicking on the V to the left. – Geoffrey De Smet Feb 10 '11 at 7:06
I know, but at that moment time limit didn't elapsed yet. – Frozen Spider Feb 10 '11 at 7:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.