I'm trying to remove lines that indicate page numbers from my document.
Rather than go through and manually remove each line, I wanted to do a find/replace with regex.
An example of an offending line is
Page 62
I'm not having much luck with the regex.
My regex is as follows
^Page [0-100]$
Scrolling to the bottom of the page, I can see that these lines end at Page 62 as per above, but this regex isn't finding any results.
Can someone tell me what I did wrong?
EDIT
I've just tried matching ^Page \d$ also with no results...
^and$means? Does the meaning apply to those lines?