How to match youtube links?
Matching youtube urls and their IDs
Everything you need to know about writing regular expressions for PHP.
For the best user experience, you’ll probably want to use multiple regular expressions, to ensure that you can provide helpful error responses to the user when their password doesn’t meet requirements.
If this matches, the password is between 8 and 40 characters.
Regex: ^.{8,40}$
If this matches, the password contains an uppercase letter.
Regex: [A-Z]
If this matches, the password contains a lowercase letter.
Regex: [a-z]
If this matches, the password contains a number.
Regex: [0-9]
If this matches, the password contains a special character.
Regex: [ !"#$%&'()*+,\-./:;<=>?@[\\\]^_`{|}~]