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 "-" ?
|
|
|
Don't put the minus sign between characters.
|
|||||||||||||||||||
|
|
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. |
|||
|
|
|
This works for me
|
|||
|
|
Inside a character class So you can use the regex:
or
Since the Another (less recommended) way is to not include the
Note that the parenthesis are not optional in this case as
Will match a lowercase alphabet at the beginning of the string and one or more |
|||
|
|