http://qs1969.pair.com?node_id=507680


in reply to Re^2: Parsing HTML tags with regex
in thread Parsing HTML tags with regex

m# < ## start with < ( ## group start [^">]+ ## text but Not match " and > (?:"[^"]+")* ## if " found, match till end quote found. Its optional [^>]+ ## text but Not match and > ) ## group end > ## End with > #