What I Want | CapturePoint Regex String | Input Text | Result | What This Does |
To find the 1st page in a series of pages that look similar. |
\b1\b |
Page 1 of 11 |
1 |
This code will look for the beginning word boundary, search until it finds a 1 and then look for ending word boundary. It will only grab the 1 and nothing else. |