Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
Pattern pattern = Pattern.compile("^[a-z]+$");
String string = "abc-def";
assertTrue( pattern.matcher(string).matches() ); // obviously fails

Is it possible to have the character class match a "-" ?

share|improve this question

5 Answers

up vote 18 down vote accepted

Don't put the minus sign between characters.

"[a-z-]"
share|improve this answer
This was downvoted, but it also works. I always just put the dash at the end. – harpo Sep 30 '08 at 17:11
1  
I'm really not sure that this is standard regexp syntax. I don't doubt that it works, but it's almost certainly not best practice. – Daniel Spiewak Sep 30 '08 at 17:17
1  
This is the correct syntax in every regexp dialect known to me. The minus sign does not have to be escaped if it's at the beginning or the end of the character class. – Konrad Rudolph Sep 30 '08 at 17:23
1  
And, to make that clear: It is perfect standard syntax. See: regular-expressions.info/charclass.html (as one example of many) – Tomalak Sep 30 '08 at 17:24
1  
It cannot be a sequence of characters ending in ']'. This would produce ambiguous syntax, so it is not allowed. The only place a closing square bracket may exist is right after the opening one ('[]a-z-]') or right after the negation ('[^]a-z-]'). – Tomalak Oct 1 '08 at 8:52
show 4 more comments

Escape the minus sign [a-z\-]

share|improve this answer

I'd rephrase the "don't put it between characters" a little more concretely.

Make the dash the first or last character in the character class. For example "[-a-z1-9]" matches lower-case characters, digits or dash.

share|improve this answer

This works for me

   Pattern p = Pattern.compile("^[a-z\\-]+$");
   String line = "abc-def";
   Matcher matcher = p.matcher(line);
   System.out.println(matcher.matches());  // true
share|improve this answer
Just curious, does it also work if your line is "abc\def"? It seems to me that you're matching both \ and - chars. – Parappa Dec 1 '08 at 19:56

Inside a character class [...] a - is treated specially(as a range operator) if it's surrounded by characters on both sides. That means if you include the - at the beginning or at the end of the character class it will be treated literally(non-special).

So you can use the regex:

^[a-z-]+$

or

^[-a-z]+$

Since the - that we added is being treated literally there is no need to escape it. Although it's not an error if you do it.

Another (less recommended) way is to not include the - in the character class:

^(?:[a-z]|-)+$

Note that the parenthesis are not optional in this case as | has a very low precedence, so with the parenthesis:

^[a-z]|-+$

Will match a lowercase alphabet at the beginning of the string and one or more - at the end.

share|improve this answer

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.