How to extract tick mark or how many tick marks are presint in the PDF and to send the mail?
I will explain clear bot need to idetify tick marks i.e., one tick mark or multiple ticks marks and bot need to show tick marks in the pdf and bot need to send mail to others.
I am sharing screenshot for your reference…
I have multiple pdf and i need to extract tick mark and text beside one…
can you plse tell me steps or screenshot for me to build the bot
I am not using any Document Understanding and i am not at all using OCR also. so is ther any way to extract multiple tick marks available in the PDF’s. can you give me some screenshots to work on my solution…
As per my understanding without using document understanding it would be difficult to achieve this as this is a scanned document. Is this the standard format of the pdf or will it get change?
To extract tick marks from a PDF document using XML in UiPath, you can use the Read PDF with OCR activity to extract the text from the PDF and then use an XML parsing activity to search for the tick mark characters in the extracted text.
Here is an example of how you can do this:
Use the Read PDF with OCR activity to extract the text from the PDF document. This activity will return the extracted text as a string.
Use an XML parsing activity, such as the XML Read or XML Document activity, to parse the extracted text as XML.
Use an XPath expression to search for the tick mark characters in the parsed XML. For example, you can use the following XPath expression to find tick marks in the text elements of the XML: //text[contains(., '✓')]
Use the Get Value or Get Attribute method of the XML parsing activity to extract the tick marks from the parsed XML.