Simple RegEx question

Hi @natasha6 ,

The period can be escaped using a forward slash like so →
image

(?<=Invoice No\.\s).*

As for the second text, you can detect the required section using this pattern →

image

(?<=Job\r?\n).*(?=\sPage)

Kind Regards,
Ashwin A.K

1 Like