I have used the get full text, and it is working. However i want to look for the number that appears after "batch number ". The number changes for every costumer, so it has to look at the space after “number”.
Yes… The get full text gives you a string right. So you can use Regex to find the the word “Batch number” and extract the value after that. Using the regex to get this output…
Use the Matches regex activity and you can generate the regex for it…
Aah sorry
I missed Match method while typing
That would work for sure giving us only the number
str_batchNumber = System.Text.RegularExpressions.Regex.Match(str_input.ToString,”(?<=batch number).(\d)+”).ToString.Trim