Regex get an amount

Hello all :slight_smile:

I am trying to get the amount of this pdf but it is not working:

image

I have tried this: “(?<=Importe: )(\d|.|,)” but it is not working.

Do you know how can I get the amount?

Many thanks!
Angel

Hello :wave:

Try this pattern:
(?<=Importe:\s+)[\d,]+

Hopefully this helps :blush:

1 Like

Many thanks!! It worked! :slight_smile:

1 Like

in case of also group seperator is needed:
grafik

1 Like

Many thanks @ppr!!

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.