Maybe I'm just tired, but I don't see an obvious way to parse the numbers from a string like this:
some text here, and then 725.010, 725.045, 725.340 and 725.370; and more text
One thing that crossed my mind: divide it with spaces into an array. Then apply a regular expression test with a group to each element of the array.
Is there a simpler and easier way to do this?
source share