File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
regex-password-validation Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 38
38
- [ Pick peaks] ( pick-peaks " 5279f6fe5ab7f447890006a7 ")
39
39
- [ Primes in numbers] ( primes-in-numbers " 54d512e62a5e54c96200019e ")
40
40
- [ Product of consecutive Fib numbers] ( product-of-consecutive-fib-numbers " 5541f58a944b85ce6d00006a ")
41
+ - [ Regex Password Validation] ( regex-password-validation " 52e1476c8147a7547a000811 ")
41
42
- [ RGB To Hex Conversion] ( rgb-to-hex-conversion " 513e08acc600c94f01000001 ")
42
43
- [ Rot13] ( rot13-1 " 530e15517bc88ac656000716 ")
43
44
- [ ROT13] ( rot13 " 52223df9e8f98c7aa7000062 ")
Original file line number Diff line number Diff line change
1
+ # [ Regex Password Validation] ( https://www.codewars.com/kata/regex-password-validation " https://www.codewars.com/kata/52e1476c8147a7547a000811 ")
2
+
3
+ You need to write regex that will validate a password to make sure it meets the following criteria:
4
+
5
+ * At least six characters long
6
+ * contains a lowercase letter
7
+ * contains an uppercase letter
8
+ * contains a digit
9
+ * only contains alphanumeric characters (note that ` '_' ` is not alphanumeric)
You can’t perform that action at this time.
0 commit comments