RegEx help!

Hi,

I looking for a solution for this.

After i have read the Pdf, i want to do a Matches.

I want to just take out the value after a specific text/name.
Example text: birthday : 20110512

How can i finde “birthday” and the grab the value 20110512.

That value will i save to excel.

/Anders

Hi @Anders_Dahl

Try this expression
(?<=birthday :).*
and use for each item in strmatches
and then use item for write range
Thanks
Ashwin S

1 Like

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