Reply to thread

heres some stuff that will help.


find the title

title=(?<!\\)(\\\\)*"(?<title>.*?)(?<!\\)(\\\\)*"


find the onmouseXXX

(?<onName>onMouse[^=]+)=(?<!\\)(\\\\)*"(?<onAction>.*?)(?<!\\)(\\\\)*"


youll need a regex to find the anchors, I didnt make one because I dont know if you have nested anchors, well heres a simple one.


(?i)(<a.*?>)|(<a>.*?</a>)


I think youll also find the MatchEvaluator delegate useful.


Back
Top