I have RegEx pattern for name field:
[a-zA-Z'-ŠšŽžÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÑÒÓÔÕÖØÙÚÛÜÝŸÞàáâãäåæçèéêëìíîïñòóôõöøùúûüýÿþƒ]
But it is allowing numbers. I want the same pattern which should not allow numbers.
I have RegEx pattern for name field:
[a-zA-Z'-ŠšŽžÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÑÒÓÔÕÖØÙÚÛÜÝŸÞàáâãäåæçèéêëìíîïñòóôõöøùúûüýÿþƒ]
But it is allowing numbers. I want the same pattern which should not allow numbers.
'-Š
This range matches any charachers in the range of charcode 39 to 352. Char codes 48-57 are 0-9 respectively. If you update that range you should be good.
Char codes:
https://www.cambiaresearch.com/articles/15/javascript-char-codes-key-codes
Personal favorite regex testing site: