[Solved] Python 3 Regex 8 numbers only
Problem with your current regex wiz r’^[0-9]{8,8}’: {8,8} minimum and maximum length you want is 8 so you can make it exact 8 like {8}, no need to have range Current regex has condition to check beginning of string but you have not defined end of string which can be defined using symbol $ which … Read more