Hello all,
Wondering if someone can direct me to a regex component and some code that I can use to strip out certain links from an HTML file (loading in a StringList).
Example:
<a href="../foo/23134.htm">bar</a>
The result I'm after is:
bar
I only want to strip the link here, but not all links from the page, only ones that contain the ../foo directory in their link. Also, the text within the link needs to stay.
Thanks.