What is the regex to tell if a string is longer than 500 characters?
I have this so far and it doesn't work:
^{0,500}
Thanks...
Printable View
What is the regex to tell if a string is longer than 500 characters?
I have this so far and it doesn't work:
^{0,500}
Thanks...
.{500,}