How to match two lines separated by newline?

I have a PDF whose textual representation (according to the rules preview) contains the two lines
I can match the individual lines, but I don't know how to match the two lines with the newline in between.
Also, each date seems to start always on the second column of the line (note the space before 1 Mar 21). Can I somehow say in a match: "Match from the beginning of the line a space and then my custom text"?
Thanks for pointers!
- Code: Select all
...
1 Mar 21
28 Mar 21
...
I can match the individual lines, but I don't know how to match the two lines with the newline in between.
Also, each date seems to start always on the second column of the line (note the space before 1 Mar 21). Can I somehow say in a match: "Match from the beginning of the line a space and then my custom text"?
Thanks for pointers!
