Regex-expression with danish characters
- by timkl
I'm currently trying to wrap my head around regex, I have a validation snippet that tests an input box against a regex-expression:
$.validator.addMethod("customerName", function(value, element){
return (/^[a-zA-Z]*$/).test(value);
}, "Some text");
That works well, but when I try to add a space and some special danish characters, it doesn't filter the danish characters, only the space.
$.validator.addMethod("customerName", function(value, element){
return (/^[a-zA-Z æøåÆØÅ]*$/).test(value);
}, "Some text");
Any ideas to what could be wrong?