I have the following password requirements:
1) Should be 6-15 characters in length 2) Should have atleast one lowercase character 3) Should have atleast one
1 => /^.{6,15}$/ 2 => /[a-z]/ 3 => /[A-Z]/ 4 => /\d/ 5 => /[#{special_chars_for_regex}]/ 6 => /^\S*$/