Isolate a double from a string

Hello Guys,

I’m trying to isolate a: using a regex formulat, i had tryed to use [0-9]+.[0-9]%$

from : abghshshkk 29.4 % 27.9

Hi @abdel,

In your exemple, what is the expected result?

If you just want any “double” you might use \b(\d+\.\d+)\b

Sorry,

I’m trying to isolate : 29.4 % from : abghshshkk 29.4 % 27.9

using a regex formulat, i had tryed to use [0-9]+.[0-9]%$

@abdel

No problem.

You can use \b\d+\.\d+ ?%