Hi,
In my regular expression for extracting a text string it seems \d and \d+ don’t work like they are supposed to.
The string I’m looking to extract is “Nomen Nescio on maksanut laskun 490” (the name obviously varies), for which I thought “\w+ \w+ on maksanut laskun \d+” should work (it works on https://regex101.com/). This however produces no output in Zapier.
When I remove the \d+ the regexp works as anticipated, yielding “Nomen Nescio on maksanut laskun”.
How could I catch the figure that comes after the text “… on maksanut laskun”?
Rgds,
Björn