Explanation: {3} matches the previous token exactly 3 times a-z matches a single character in the range between a (index 97) and z (index 122) (case sensitive) A-Z matches a single character in the range between A (index 65) and Z (index 90) (case sensitive) \d matches a digit (equivalent to [0-9]) {3} matches the previous token exactly 3 times