Text extraction from pdf-- regex

Hi, I want to read only "Employee Code " from below pdf.
Please help on regex.

Hi,

How about the following expression?

System.Text.RegularExpressions.Regex.Match(strPdf,"(?<=Employee\s*Code\s*:\s*)\d+").Value

Regards,

Thanks @Yoichi

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