Hi,
I am searching names in a pdf if that name is available in the pdf then I need to extract that name. This pdf is opened in chrome browser.
Regards,
Hi,
I am searching names in a pdf if that name is available in the pdf then I need to extract that name. This pdf is opened in chrome browser.
Regards,
You Can Extratct it by using the cv get text activity with in th cv scope
Cheers!
Hi @raju_alakuntla ,
Thanks for reaching out to UiPath Community.
You can follow these easy steps.
-Open the PDF in Chrome:
Then when you need the name or any extracted value from the PDF you can try regular expressions or string manipulation to find the name in the text.
Regards,
@pratik.maskar
You can use Get Cv text or get text once it completed
Check if that Name is avilable or not by using regex or Value.contains
In Regex is match activity will give you true or false based on that if condition to get the value.
Next use Contains in if condition that also work.
Hi @raju_alakuntla
Try these below steps
→ Use the use applicatoion/Browser activity to open the Chrome browser.
→ Use the Navigate to activity to navigate to the URL of the PDF you want to search.
→ Use the Take Screenshot activity to capture the content of the PDF displayed in the Chrome browser.
→ extract text from the captured screenshot. This text contains the content of the PDF.
→ Store the extracted text from the PDF in a variable.
→ Use the String Manipulation activities to search for the specific names you want to find in the extracted text.
→ If the name is found, store it in a separate variable.
Thank you