A regular expression to match all lowercase and uppercase letters including accented characters.
/[A-zÀ-ú]/
Matches:
- abc
- àèìòùÀÈÌÒÙáéíóú
- [ ] ^ \ × ÷
Non-matches:
- &*()+
- 123
The following regular expression can be used to match accented characters and letters with an umlaut.
/[A-zÀ-ÿ]/
Matches:
- abc
- àèìòùÀÈÌÒÙáéíóúýÁÉÍÓÚÝâêîôûÂÊÎÔÛãñõÃÑÕäëïöüÿÄËÏÖÜçÇߨøÅ寿
- [ ] ^ \ × ÷
Non-matches:
- &*()+
- 123
See Also:
- Regular Expression To Match Non-ASCII Characters
- Special Characters Regular Expression
- Regular Expressions To Match Common Special Characters (Unicode Symbols)
- Regular Expression To Match Russian Cyrillic Characters
- Regular Expression To Match Persian Characters
- Regular Expression To Match Arabic Characters
- Regular Expression To Match Accented Characters
- Regular Expression To Match Hebrew And English Characters
- Regular Expression To Match All Greek & Latin Characters