How to read the particular text from pdf

I am having one pdf. I want to read the particular string from that pdf how can I do it using the OCR.
anyone, please tell me its imp for my project.

Try using ‘Get OCR Text’.

Thanks,
Rammohan B.

akshaygm12,
Use Regular expressions to extract particular string.
System.Text.RegularExpressions.Regex.Match(Variable,“(?<=Exp).*” ).Value

Thanks!

1 Like