I am trying do pincode validation using regex which takes only 6 numbers.
I am able to do validation for numbers but it is also accepting letter "e" as well which I want to skip.
Regex code: pincodePattern = /^\d{6}$/;
.
thanks.
I am trying do pincode validation using regex which takes only 6 numbers.
I am able to do validation for numbers but it is also accepting letter "e" as well which I want to skip.
Regex code: pincodePattern = /^\d{6}$/;
.
thanks.