Using Ruby 1.9.2, I have the following Ruby code in IRB:
> r1 = /^(?=.*[\d])(?=.*[\W]).{8,20}$/i
> r2 = /^(?=.*\d)(?=.*\W).{8,20}$/i
> a = ["password", "1password", "password1", "pass1word", "password 1"]
> a.each {|p| puts "r1: #{r1.match(p) ? "+" : "-"} \"#{p}\"".ljust(25) + "r2: #{r2.match(p) ? "+" : "-"} \"#{p}\""}
This results in the following output:
r1: - "password" r2: - "password"
r1: + "1password" r2: - "1password"
r1: + "password1" r2: - "password1"
r1: + "pass1word" r2: - "pass1word"
r1: + "password 1" r2: + "password 1"
1.) Why do the results differ?
2.) Why would r1
match on strings 2, 3 and 4? Wouldn't the (?=.*[\W])
lookahead cause it to fail since there aren't any non-word characters in those examples?
/^(?=.*[\d])(?=.*([\W])).{8,20}$/i
and tell use what is captured in capturing group1
? (I'm afraid it's the digit, but you never know) – Botello