We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Validation for german phone number is not working I've checked real phone +4930405044550 from one of Berlin stores with de-DE regexp and it gives me false (https://www.google.com/maps/place/The+Store+X+Berlin/@52.5280015,13.4141284,17.42z/data=!4m12!1m6!3m5!1s0x47a84e1c439e08bb:0x853b981aa9de358c!2sThe+Store+X+Berlin!8m2!3d52.5275889!4d13.4153528!3m4!1s0x47a84e1c439e08bb:0x853b981aa9de358c!8m2!3d52.5275889!4d13.4153528)
+4930405044550
de-DE
false
You can try to run in console: /^(\+49)?0?1(5[0-25-9]\d|6([23]|0\d?)|7([0-57-9]|6\d))\d{7}$/.test('+4930405044550') to see the result
/^(\+49)?0?1(5[0-25-9]\d|6([23]|0\d?)|7([0-57-9]|6\d))\d{7}$/.test('+4930405044550')
The text was updated successfully, but these errors were encountered:
@TarasVerbniak -- thanks for raising this. You can make a PR?
Sorry, something went wrong.
Hi, I would like to work on this one. Thanks!
Hi @profnandaa, I made a PR for this: #1391
f67a57f
No branches or pull requests
Validation for german phone number is not working
I've checked real phone
+4930405044550
from one of Berlin stores withde-DE
regexp and it gives mefalse
(https://www.google.com/maps/place/The+Store+X+Berlin/@52.5280015,13.4141284,17.42z/data=!4m12!1m6!3m5!1s0x47a84e1c439e08bb:0x853b981aa9de358c!2sThe+Store+X+Berlin!8m2!3d52.5275889!4d13.4153528!3m4!1s0x47a84e1c439e08bb:0x853b981aa9de358c!8m2!3d52.5275889!4d13.4153528)You can try to run in console:
/^(\+49)?0?1(5[0-25-9]\d|6([23]|0\d?)|7([0-57-9]|6\d))\d{7}$/.test('+4930405044550')
to see the resultThe text was updated successfully, but these errors were encountered: