PFA
I need to extract REFERENCE ID from all the 3 shipments as show in the image
Can anyone suggest me the best approach how to proceed
Please forgive for too much markings
Thanks in advance
PFA
I need to extract REFERENCE ID from all the 3 shipments as show in the image
Can anyone suggest me the best approach how to proceed
Please forgive for too much markings
Thanks in advance
Hi @rsr.chandu ,
can you try this
str = “Reference ID: 4YZBUXYO”
referenceID = System.Text.RegularExpressions.Regex.Match(str,“((?<=Reference ID: ).*)”).ToString
Thanks!
How to capture all three 3 shipments from WEB that is my doubt
@rsr.chandu Use Read ocr text to get all text from the page and based on regex get the reference id
Extract entire data from web application & use the regex pattern to get required data
(?<=Reference ID: ) use this pattern you will get
Thanks
Varun