I have a regular expression for a 15-character limit:
/^([a-zA-Z0-9_]{1,15})$/
I would like to remove the character limit. How do I do this?
I have a regular expression for a 15-character limit:
/^([a-zA-Z0-9_]{1,15})$/
I would like to remove the character limit. How do I do this?