Using Text left to Right Activity to extract Data from PDF to Notepad

Data is PS ID :1234567 & in some PDF it is PS ID: 1234567

How can I use Text left right activity in such a way such that in automation I should get value if this or that?

Hi @Raks_K

Hope it helps!!

@Parvathy The Numbers keep changing, Does it work for Dynamic?

Hi @Raks_K

I have given Seperator as : to the after numbers will be taken.

Hope it helps!!

Thanks a ton it works

How Can I split this:

1 Resource Name: ABC DEF GHI 4,36,800

First I use Custom text split & give 1 Resource Name:
Second I use New line split & get ABC DEF GHI 4,36,800

I want to know how can I just get name & not amount

Hi @Raks_K

FInal = System.Text.RegularExpressions.Regex.Match(Output,"[A-Z].*(?=\s\d+\,?\d+\,?\d+)").Value.trim()

Hope it helps!!

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