Hi team,
I need to get the following values from the pdfs attached.
there are 2 pdfs in different format, so I’m not able to use Start index and End index.
I have searched forum as well, din not find any related solution.
The values to be fetched are “invoice no”,“vendor taxid”,“date”,“currency”,“item description”,“untaxed amount”,“tax amount”,“total amount”.
In you particular scenario I would suggest you to use Regex functions in order to help you gathering the information needed from different PDF layouts. Basically, you are going have to do the following steps:
Read PDF Text activity to convert your PDF file to a string variable
Matches activity to get the information needed from that string variable
For example, to get invoice id you could use the following Regex pattern:
(?<=Invoice).*?(\d+)
Hi,
thank you so much for the reply…
yes I’m using Read PDF activity.
can some one attach a workflow for the same, I tried but did not get the solution.