Hi,
Simple RegExp request here, well I think it's simple. I'm looking for RegExp pattern that will match a string which contains at least 5 alphabetic characters [a-zA-Z] (not necessarily in sequence).
e.g:
wordword - would match
word121word - would match
w1w1w1w1w1 - would match
w1w1w1 - no match
Thanks
Simple RegExp request here, well I think it's simple. I'm looking for RegExp pattern that will match a string which contains at least 5 alphabetic characters [a-zA-Z] (not necessarily in sequence).
e.g:
wordword - would match
word121word - would match
w1w1w1w1w1 - would match
w1w1w1 - no match
Thanks