Hello!
I am trying to obtain a numeric value from a string, for example:
Input - Our price 13,54
Output - 13,54
Using the following actions, I’ve almost done what I want.
Where I am stuck now is that the output looks like this:
The regex I use looks like this in step 11:
([0-9]{1,5}.[0-9]{2})
Using regexr to check my expression, it should grab the decimal too. What am I doing wrong?