How to find result out of a string

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)+”)

  1. 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.

image
image

thanks!

1 Like