I deal with strings that contain Greek and English (Latin) text. I'd like to use a regex to catch all the Greek words that contain 4 or more characters on them.

Using regexp manual I figure out that I can use \p{Greek} to grab all Greek words and \w{4,} in order to grab 4+ character words. However, these two don't work together, from various tests I made.

Is there any way to do what I want using 1 regexp expression? Strings are UTF-8 and come out of tweets.

Regards

link|improve this question

67% accept rate
Show us what is failing for you. I'm stuck at im`agining how you would need to combine these expression (afaict \w{4,} specializes on \p{Greek}` so why do you need both?) – sehe May 7 '11 at 9:40
feedback

1 Answer

up vote 2 down vote accepted

Are you using the UTF-8 pattern modifier?

/\p{Greek}{4,}/u
link|improve this answer
Thanks, works fine :-) – atmosx May 7 '11 at 17:58
feedback

Your Answer

 
or
required, but never shown

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