this post was submitted on 21 Sep 2024
297 points (96.3% liked)

Programmer Humor

32252 readers
219 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
[–] [email protected] -1 points 3 weeks ago (1 children)
[–] [email protected] 5 points 3 weeks 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 3 weeks ago* (last edited 3 weeks 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;.

[–] [email protected] 4 points 3 weeks 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>"'>