

So, my goal is to extract this text from a collection field (inside a loop) and then re-insert the correct data inside my collection, which is the best method to do that?

Is this pattern correct? I've tried with the test regex and the match is True but when i try to configure the extract regex values the collection is empty. I've found this pattern "\d+(\.\d)?" and i have 2 matches 998 and 145. I need to extract only number inside my string values.ĮX. I've some problems with using the "extract regex values". This will match only digits and will keep them in groups, so instead of getting 9 9 8 1 4 5 it will group them as 998 and 145.ĭirector, Partner Integrations for Digital Exchange Since you want to match complete numbers you can apply grouping as this (\d+).

However, this will match each individual digit. There are lots of different ways to match just numbers.
