Open ddtramp opened 6 years ago
When I match against a document with only one of these strings (and no extra newline or anything), it does not match.
Make sure you turn off the automatic addition of '/gm' for advanced regexes like this. The statusbar should show:
reg = /^(?![a-zA-Z]+$)(?![A-Z0-9]+$)(?![A-Z\W!@#$%^&*`~()-+=]+$)(?![a-z0-9]+$)(?![a-z\W!@#$%^&`~()-+=]+$)(?![0-9\W_!@#$%^&
~()-+=]+$)[a-zA-Z0-9\W_!@#$%^&*
~()-+=]{6,20}$/string = asd1111, the result show true string = 1 the result show true string = asd1111 the result show ture
all of the above should be false
Lowercase letters, uppercase letters, numbers ,special characters and length
Must contain three types at the same time and length must between (6, 20)