jsf regex any letter character, multiple letters -


i want validate 'name' field in jsf. need write regex allow character (unicode), no numbers or special symbols. found

\p{l} matches single code point in category "letter".

but doesn't work. plus, how did rewrite match array of chars?

cheers.

add + modifier after:

\p{l}+ 

that means 1 or more letters.


Comments

Popular posts from this blog

php - regexp cyrillic filename not matches -

c# - OpenXML hanging while writing elements -

sql - Select Query has unexpected multiple records (MS Access) -