I have this regex pattern:
^[.]{5,}$
That I want to return true if the tested string has 5 or more characters.
I.E. it will only return false if the string contains 4 or less characters.
Currently it returns true, regardless of the number of characters, and I do not understand why.
regex
Ysol8
source share