re = /(?(DEFINE)(?'uc'(?=\S*?[A-Z])))
(?(DEFINE)(?'lc'(?=\S*?[a-z])))
(?(DEFINE)(?'num'(?=\S*?[0-9])))
(?(DEFINE)(?'pun'(?=\S*?[][(){}~!@$%^&*_+=\\:;"'<>,.?\/-])))
(password
|(
(?P>lc)(?P>num)(?P>pun)
|(?P>uc)(?P>num)(?P>pun)
|(?P>uc)(?P>lc)(?P>pun)
|(?P>uc)(?P>lc)(?P>num)
)\S+ # change the "+" to "{4,}" to require a min-length
)/mx
str = 'Should match:
password
a1.
Aa1
Aa.
Aa1.
Aabc123
Should not match:
abc123
AABB
A111
BBBbbb
192.168.1.0'
# Print the match result
str.scan(re) do |match|
puts match.to_s
end
Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for Ruby, please visit: http://ruby-doc.org/core-2.2.0/Regexp.html