Good afternoon; My question is: Is it possible to create a condition that finds and extracts data that starts with a number and has a specified number of digits?. Thank you.
Hi @AlbaTi :
I assume you want to filter out a text that starts with a number and has a total length of 5 characters. I've made a test for your reference:
1\Add a Text Recognition(TextRecognizer1) into power apps
2\Create a datatable(DataTable1) to present the results of recognition
Items
Filter(TextRecognizer1.Results,IsMatch(Text,"\d+\S{4}"))
Best Regards,
Bof