Best way to find a keyword in a pdf file if exist copy that pdf file in the separate folder

Hi, I am trying to find the efficient solution for my workflow.
I have around 100 resumes in the specific folder and I want my bot to go through all of it and it will move each resume to separate folder only if that resume contains specific keywords.
Can somebody share or suggest best possible ways in which we can achieve this

@Rajesh_Acharya

Try below steps.

  1. Iterate one by one PDF file.
  2. Use Read PDF Text activity to read the data and it will give output as String. Let’s say ‘strBioData’
  3. Then check strBioData.Contains(“required String”. If yes then use Move File activity to move the file else not.
2 Likes

thanks for the reply, will check that.

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.