How to read multiple info from the same sheet pdf

assuming txt = output of read pdf

  1. assign matches(matchCollection variable) = System.Text.RegularExpressions.Regex.Matches(txt, "([\d]{8})")

  2. loop over matches (type argument = system.regularexpressions.match) , in the loop you can print item.groups(1).value to get the actual number

uipathF.xaml (7.2 KB)