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.

link|improve this question

64% accept rate
2  
Whenever somebody's trying to limit the input range like that, I ask myself: Is it really a good idea? You may well have a valid use case, but often it's overkill - imagine a person with a non-Greek name living in Greece, or a foreigner trying to input a temporary address elsewhere in the world, etc. etc. – Pekka Jun 6 '11 at 16:51
Either way, you should add more information: What character set is the data in that you are comparing? UTF-8? – Pekka Jun 6 '11 at 16:52
1  
Which findings did you try? (Else you might get the exact same suggestions.) – mario Jun 6 '11 at 16:53
feedback

3 Answers

up vote 1 down vote accepted

I'm not too current on the Greek alphabet, but if you wanted to do this with the Roman alphabet, you would do this:

/^[a-zA-Z\s]*$/

So to do this with Greek, you replace a and z with the first and last letters of the Greek alphabet. If I remember my Bible passages correctly, those are α and ω. So the code would be:

/^[α-ωΑ-Ω\s]*$/
link|improve this answer
gee, that never occured... thanks mate. – bikey77 Jun 6 '11 at 17:07
feedback

Greek & Coptic in utf-8 seem to be in the U+0370 - U+03FF range. Be aware: a space, a -, a . etc. are not....

link|improve this answer
feedback

Here is your solution :)

$pattern_gr = '/^[\x{0386}-\x{03CE}\x]+$/u';

link|improve this answer
1  
It looks like this is nearly a copy/paste of the earlier (6+ months earlier) answer... If there's some significant improvement to the earlier answer, it'd be best to outline/explain that. Thanks. – BigBlueHat Mar 13 at 18:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.