Regex Based Extractor - Help me with Regex Expression

Please help me with the pattern to get the number after the text NO using regex based extractor in invoice processing. (Note: count of number may vary)

NO : FR977836434823
NO:GE629383627F24564
NO GB2742HSD924282

@Jesi Check if this Regex satisfies with your Original Data :

3 Likes

Try this

Thanks
@Jesi

3 Likes

You want to get all the numbers after “NO :”???

1 Like

\w+(\d+\w+)*\d+

1 Like

@Jesi

Use the above regex from @supermanPunch :+1:

Then use the below in an assign activity to split out group 1 from each result:
INSERTVARIABLE(0).Groups(1).ToString

Replace capitals with your variable.

1 Like