let\'s say i have string like that:
eXamPLestring>1.67>>ReSTOfString
my task is to extract only 1.67 from string above.
You can use the regex \d*\.?,?\d* This will work for floats like 1.0 and 1,0
\d*\.?,?\d*