Sorry this might be a simple question, but I could not figure it out. What I need is to filter out all the <a href...>
and </a>
strings out from a html text. Not sure what regular expression I should use? I tried the following search without any luck:
/<\shref^(>)>
what I mean here is to search for any string starting with "< href" and any string not containing '>' and finally '>'. My search code is not working. What is the correct one?