Here’s a Javascript regular expression which will match a string which contains at least one lower case letter: /[a-z]/ And another which will match a string with at least one upper case character: /[A-Z]/ I can even stick these together …
Read moreThings I love, things I hate, and things I just don't understand
Here’s a Javascript regular expression which will match a string which contains at least one lower case letter: /[a-z]/ And another which will match a string with at least one upper case character: /[A-Z]/ I can even stick these together …
Read more