Extract values using Substring

Hi @lakshman

Try this sample:

  • Read PDF text -->output: pdf_txt

  • Write text file -->input: pdf_txt

  • Read text file → output: txt_str

  • For each item in txt_str.Split(vbNewLine.ToCharArray)
    here item will iterate over rows in txt_str
    [Note : item can be filter using keyword(or regex)]

4 Likes