Hi All,
I am using text recognition in which I capture a picture and the AI component shows me all the text the end user can select and do further processing.
by using TextRecognizer1.Results.Text I am able to get all the text that was recognized and I am assigning all the text to a datatable which works fine but now I want to search for a custom text in the result which was received by TextRecognizer
Usecase : On the otherside of the product, there is a country of origin text which has to be India, so I am trying to search it thus eliminating any manual efforts required to select and process further.
Hi, Would using a formula along the lines of
If(CountRows(Search(TextRecognizer1.Results, "India", "Text")) > 0, "Found", "Not Found")
work to detect the presence of those specific words? I'm not entirely sure that I got the scenario right.