Skip to content
Advertisement

Regex doesn’t work in String.matches()

I have this small piece of code

JavaScript

Supposed to print

JavaScript

but it prints nothing!!

Advertisement

Answer

Welcome to Java’s misnamed .matches() method… It tries and matches ALL the input. Unfortunately, other languages have followed suit 🙁

If you want to see if the regex matches an input text, use a Pattern, a Matcher and the .find() method of the matcher:

JavaScript

If what you want is indeed to see if an input only has lowercase letters, you can use .matches(), but you need to match one or more characters: append a + to your character class, as in [a-z]+. Or use ^[a-z]+$ and .find().

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement