Hi! I am almost done with the project y'all have been helping me on, (thanks!), but I can't seem to some up with a RegEx that works for this scenario. Can someone help me?
It must have at least one special character out of these:
!@#$%^
and it has to be made of either letters (any case), numbers, and the special characters !@#$%^&*()_-+<>?:
So, I think it should use the look ahead ?= !@#$%\\^ and then do I need the + sign for one or more instances?
and then any
word character including newline is \\w* (0 or more instances)
and any digit is \\d* (0 or more instances)
and then just add in the special characters I am missing, but how do I
string this all together? I've tried many ways and I keep getting either a syntax error or
it just doesn't match
test passwords that meet these requirements.
Thanks for helping...again! Hahaha.