I need a javascript function for validating alphabetic input with a few extra characters from the Italian languages, namely: àèéìòóù
I saw a regex before with something like:
[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]
What are those codes named and where can I find the right values?
I would like to use these into following function:
function val_alpha_it(str) {
var re = /[^A-Za-z]/
return re.test(str);
}