this post was submitted on 21 Sep 2024
282 points (96.1% liked)

Programmer Humor

32131 readers
1290 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] moriquende 5 points 6 days ago (1 children)

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\">" >

[–] [email protected] 0 points 6 days ago* (last edited 6 days ago) (1 children)

Is this valid HTML? My understanding is that that attribute value needs to be escaped, i.e. &lt;value of \&quot;myattribute\&quot;&gt;.

[–] moriquende 4 points 6 days ago

The quote must not be escaped when you start with a single quote. The rest doesn't. This is valid and tested: <img alt='my "<img>"'>