How would you create a regular expression for a value that should contain at least one number? The user can enter any special character, letter etc., but should contain at least one number.
I tried with pattern="[w+]{6,20}"
and
(?=.*d)(*[a-z])(*[A-Z]).{6,20}
Neither are working.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…