5 points
You can’t parse every html opening tag with regex, because a html opening tag doesn’t have a set structure. How would you match, with regex, this opening tag?
<mytag myattribute="<value of \"myattribute\">" >
0 points
*
Is this valid HTML? My understanding is that that attribute value needs to be escaped, i.e. <value of \"myattribute\">
.
4 points