Skip to content
Advertisement

Search for regex terms independent of symbol

So I have this string right here, it’s a registration number:

12.325.767/0001-90

And I want to create a regex when I type “23”, return for me the “2.3” or if I type “700”, return for me “7/00” or if I type “19”, return “1-9”.

So, I want to get the number even if there is a symbol in the middle.

I’m trying this on Javascript, here what I have:

JavaScript

output:

JavaScript

This output is correct, because I put a number that does not have symbols in its composition.

But when I try to search a number that contains a symbol in its composition, is not splitted.

Advertisement

Answer

You could convert the user input into a RegExp that has symbols between each digit. For example, 12 becomes 1[.,/:;]?2, so you search if there is one or none of those symbols between the numbers.

If you used a function like this, you would get the result you want:

JavaScript

for user input 23, with your example text 12.325.767/0001-90, this function returns the following result

JavaScript

You can substring from that, using the index and the result length, or make a more complex RegExp, like this:

JavaScript

This returns the array you expected.

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