How to extract data from secured pdf?

Hi @firas ,

say the string is stored in str (a variable)

then to get the 555 value between Service Cost and Dollars then use it as below
str.Split(“Service Cost”,2,Stringsplitoptions.None)(1).Split(“Dollars”,2,Stringsplitoptions.None)(0)

Hope this helps

cheers