Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Regex solution in Clear category for House Password by borisuvarov
import re
def checkio(data):
pattern = re.compile('^.*(?=.{10,})(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).*$')
if pattern.match(data):
return True
return False
Aug. 16, 2015
Comments: