Skip to content
Advertisement

regex to detect trailing comma and/or space separated numbers [closed]

I need a regex to detect and match some values like that:

JavaScript

but values like following, are not allowed:

JavaScript

One more requirement I have, that i need to use it with PHP preg_match and extract all mathces into variable

Advertisement

Answer

Regex can get tough, but, if i’ve understood your use case correctly, this should work:

(?=d+[ ,/])([d,/s]{2,})$

As shown in this example

Breakdown:

  • (?=d+[ ,/]) positive lookahead asserting that what comes after must include at least one number and one of a space, comma, or slash
  • ([d,/s]{2,}) capture group asserting a match of at least 2 of number space, comma, or slash
  • $ asserts the end of the string

NOTE:

if you want to allow multiple spaces, tabs, new lines etc, change (?=d+[ ,/]) to (?=d+[s,/])


As for getting and working with the matches, something like this should work as shown in this example:

JavaScript

Which produces this output:

‘Lorem ipsum 1,2,3’ matches…

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