Extract Specific numbers from PDF

Hi @Justine ,

Could you try using the Regex Expression below :

(?<=PAID-UP\s+,ORDINARY\s+SINGAPORE, DOLLARS\s+)[\d.,]+

Expression :

System.Text.RegularExpressions.Regex.Match(pdfText,"(?<=PAID-UP\s+,ORDINARY\s+SINGAPORE, DOLLARS\s+)[\d.,]+",RegexOptions.IgnoreCase).Value

Let us know if this doesn’t work.

1 Like