Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Normal
heres some stuff that will help.find the titletitle=(?<!\\)(\\\\)*"(?<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.
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.