will pass such words like "Test test" or "test Test", but IT WOULDNT pass special characters (unicode) like "Łądsc Ęsć" .. and I would like to allow that too.
Regex to validate letters, spaces and unicode characters
Hi,
Could you guys help me to add this pattern: `[\u0000-\u0080]`
into the following regex: `/^[a-zA-Z\ \']+$/` ?
The above regex allows only letters and spaces, and I would like it to additionaly allow text if it has the above unicode pattern also (but its not required).
Leave a comment: