Skip to content
Advertisement

Regex to allow space between numbers or nothing before the first one

I have the method that follows – verifyPhones, I am using two regexs on it. The first one is to identify if the String is valid, if not I need to search which numbers are not valid.

My problem is when I have two valid numbers together – 20255501252025550125, the system is returning only one of them as wrong instead of the whole string.

How can I improve my regex to have achieve that?
Thanks in advance.

Definition of valid number:

Any number that have 9 numbers, separated or not by the char -
Example:

000-000-0000

0001110000

Here is my code:

JavaScript
JavaScript

Advertisement

Answer

Here’s what I suggest:

If valid numbers have to be separated by a space from each other, then you can first split the String by spaces into pieces, where each piece is going to be a number. And then apply validation pattern on each piece separately. Those pieces that do not match the pattern are going to be invalid numbers.

Here’s an example:

JavaScript

Note: I’ve changed the method’s signature. Now it returns a List of wrong numbers. You do not expect to always have only one invalid number, do you?

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement