@retrieving values from pdf

Hi @akhila.a,

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:

  1. Read PDF Text activity to convert your PDF file to a string variable
  2. 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+)

image

image

1 Like