([a-zA-Z]){20,}
Michał Niklas
2009-05-06 10:26:41
Try this regular expression:
\b\w{20,}
Or if the implementation you are using supports Unicode character properties:
\b\p{L}{20,}