regular expression to match any string but at least 3 characters
- by David
sorry am not a regex expert. but my request is simple, i need to match any string that has at least 3 or more characters that are matching
So for instance, we have the string "hello world" and matching it with the following:
"he" => false // only 2 characters
"hel" => true // 3 characters match found
thansk in advance.