How do I find lower case / special characters in a word
for example :
HELLO (this is good)
HeLL0 ( not good)
H$L&0 (not good) .
I have two regex statements that I am evaluating this value by but does not seem to help
var pattern = /[A-Z]*[A-Z,]+/;
var pattern2= /[^a-z0-9!@#$%^&*()+-_?<>~`\|{}]+/;