Hi,
Try this workflow,
1.Use get ocr text activity to get a output string.
2.Use regular expression to get a list of numbers
use this expression: `
system.Text.RegularExpressions.Regex.Matches(Ocrtext,“(\d)+”)
- Add your list of condition as a string and iterate through for each activity.
4.Use switch activity and add the cases based on the condition you have.


thanks!