Hello Guys!
Im new with powerapps and I have some questions.
Im currently using AI Builder TextRecognizer.
And I want to check from the textrecognizer.Result.text if it contains the specific text that I want to find?
Pls help.
Thank You
Hello
Here is an example of a formula you can put in a text label:
If(IsBlank(Find("text to find", First(TextRecognizer1.Results).Text,1)),"not present", "present")
TextRecognizer1.Results is a table so I've used 'First' to return the first selected text.
If you want to search for all texts, you can use
If(IsEmpty(Search(TextRecognizer1.Results,"text to search","Text")),"not present", "present")
Hope this helps
Antoine2F
WarrenBelz
770
Most Valuable Professional
stampcoin
494
MS.Ragavendar
399