My regex
\d+\.*\d+
my String
4a 1 a2 3 21 12a3 123.12
What I get:
['21', '12', '123.12']
What I need:
412321123123.12
I do work well when there is just 123.12 for example but when I add spaces or new chars in between it separates them. I want it to skip all the spaces and chars and to extract just numbers separated with '.' in the right position.