Try as I might, I can't find the example I need to do this simple regex extract. Please can someone help real quick?
Here is the relevant line of html as it appears in the source of my browser:
<p><strong>Name:</strong> J. Robertson</p>
I want to capture the text in bold above (J. Robertson)
So in regex speak I believe I want to search for this text:
<p><strong>Name:</strong>
...and then start a marked group, and capture everything until the next instance of </p> which closes the marked group. Pretty simple huh, but I can't figure it out and I can't find a help example. How do I do this? Thanks!