-3

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.

djs
  • 1,660
  • 1
  • 17
  • 35
learner
  • 21
  • 5

1 Answers1

0
'-Š

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:

https://regexr.com/

Marker
  • 560
  • 4
  • 20