F
fdisk
Oh great Regular Expression gurus - I summon thee...
I am using the regular expression validator...
I know this is probably about as trivial as it gets for someone with
regular expression experience, but I don't. I was wondering if
someone would be able to create a regular expression (for validating
user passwords) that matches the following:
All of the following must be true for a match:
6-12 length - Isn't it something like {6,12}
Must include 1 or more lowercase - [a-z]
Must include 1 or more uppercase - [A-Z]
Must include 1 or more numeric - [0-9]
That's it, from the little I know, those are the patterns that it
should use, but I have no idea how to create the full statement.
TIA!
JB
I am using the regular expression validator...
I know this is probably about as trivial as it gets for someone with
regular expression experience, but I don't. I was wondering if
someone would be able to create a regular expression (for validating
user passwords) that matches the following:
All of the following must be true for a match:
6-12 length - Isn't it something like {6,12}
Must include 1 or more lowercase - [a-z]
Must include 1 or more uppercase - [A-Z]
Must include 1 or more numeric - [0-9]
That's it, from the little I know, those are the patterns that it
should use, but I have no idea how to create the full statement.
TIA!
JB