How to read the particular text from pdf

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

Thanks!

1 Like