I am writing a simple regex validator method in nuxeo java
mystring.matches("[a-z]")
This validate correctly if enter any letter . a or b or z .
This validation allows to enter a letter but when i enter a word it fails.
Why is that ? Do i have to enter any length param ?