Answered
PDF How to reject Polish Characters to be typed in a Field
Hello,
How do I discard all special characters in the Polish alphabet (ąćńółżź) in a form field?
I use Custom Keystroke Script:
event.rc = /^[ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0-9]*$/.test(event.change);OR
event.rc = /^[\w]*$/.test(event.change);
Unfortunately, it still allows to enter these characters (ąćńółżź).
