I’m trying to build a regex that joins numbers in a string when they have spaces between them, ex:
$string = "I want to go home 8890 7463 and then go to 58639 6312 the cinema"
The regex should output:
"I want to go home 88907463 and then go to 586396312 the cinema"
The regex can be either in python or php language.
Thanks!
Use a look-ahead to see if the next block is a set of numbers and remove the trailing space. That way, it works for any number of sets (which I suspected you might want):