Sorry for the ignorance, I'm just starting out and haven't been able to find a good answer to this anywhere else. Basically, I have an HTML file saved as plaintext, and I want to pull a string within a line out of it. The line looks like this:
<li><strong>Password: XXXXXX</strong></li>
First of all, it is the second instance of that line that I want to pull. And the only part of it that I want is XXXXXX. I would prefer to delete everything else in the file besides XXXXXX. The string changes often, so I can't just grep for it. Thanks for any help.
