Hi,
There is any way to extract structure & unstructured(Invoice) data without using endpoint in Document Understanding.
Thanks
Hi,
There is any way to extract structure & unstructured(Invoice) data without using endpoint in Document Understanding.
Thanks
Thanks @Nithinkrishna for reply
Please suggest any alternate method which we can fetch structured or unstructured data if you have any solution. Please let me know.
Hey @mukesh_singh
It’s possible with regex or string manipulation!
For un-structured we can use the above if atleast the field and values are fixed.
Thanks
#nK
Hello @mukesh_singh ,
If you don’t want to use the Document understanding , then you can try to automate your scenarios using, the combination of default activites and regex.
For example, if you have a PDF and you want to extract few details from that, but the structure of that file will vary each time but the labels will be present in all the documents in different position. Then you can use Read PDF Text or Read PDF with OCR. Then you will get a string output and you can use regex expresion to split the data (using ismatch or string manipulation).