I need a regular expression that accepts only Greek chars and spaces for a name field in my form (PHP). I've tried several findings on the net but no luck. Any help will be appreciated.
feedback
|
|
I'm not too current on the Greek alphabet, but if you wanted to do this with the Roman alphabet, you would do this:
So to do this with Greek, you replace
| |||
|
feedback
|
|
Greek & Coptic in utf-8 seem to be in the U+0370 - U+03FF range. Be aware: a space, a | |||
|
feedback
|
|
Here is your solution :) $pattern_gr = '/^[\x{0386}-\x{03CE}\x]+$/u'; | |||||
feedback
|