regular expression
1 answers
Regex: How to prevent password to contain 3 consecutive characters as a substring
1 year 18 weeks ago Tags:
- View Orignal Stackoverflow Question
- 1 comment
- login or register to post comments
0 answers
PHP filter array
1 answers
You can use ^ to match beginning-of-line, and $ to
You can use ^ to match beginning-of-line, and $ to match end-of-line, thus the regular expression ^$ would match an empty line/string.