Quote:
Originally Posted by MerlinMama
With the tags, I can get #2 and #3 to work, but don't remember how I modified it for #1
|
OK, try this one, with the function you showed above :
Code:
Last Read:</b>\K(<em>N/A</em>| \d{1,2}/\d{2}/\d{4}|\s)
It will capture your 3 forms.
Explanation : You have to specify the text before the targeted text ("Last Read:</b>"), because you don't want to capture all spaces in the page

. The \K reinitialize the pointer at this position (i.e. "forget the text found until this point")