I want to match a string to make sure it contains only letters.
I've got this and it works just fine:
var onlyLetters = /^[a-zA-Z]*$/.test(myString);
BUT
Since I speak another language too, I need to allow all letters, not just A-Z. Also for example:
é ü ö ê å ø
does anyone know if there is a global 'alpha'
term that includes all letters to use with regExp? Or even better, does anyone have some kind of solution?
Thanks alot
EDIT: Just realized that you might also wanna allow '-' and ' ' incase of a double name like: 'Mary-Ann' or 'Mary Ann'