this post was submitted on 21 Sep 2024
296 points (96.2% liked)

Programmer Humor

32253 readers
221 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
[–] schnurrito@discuss.tchncs.de 96 points 3 weeks ago (3 children)

no, this is one of the worst answers on Stack Overflow

OP had a specific question to capture opening tags. The thing OP asked about can be done with regular expressions. It is true that arbitrarily nested languages like HTML cannot generally be parsed with regular expressions, but that is not what OP asked about.

[–] fartsparkles@sh.itjust.works 86 points 3 weeks ago (3 children)

This is StackOverflow after all. Your question is wrong. Your problem is wrong. You are wrong. I am right. Thread locked. Go read this other post that is totally unrelated to your problem I’ve decided isn’t the problem you’re facing because. I. Am. Right.

[–] Quetzalcutlass@lemmy.world 18 points 3 weeks ago* (last edited 3 weeks ago) (3 children)

Could be worse. At least it's not Microsoft's support forums:

Hey, I see you're having problems with <copy-paste key words from OP>. Try the following and see if it fixes your issue.

Open a command prompt and enter ”sfc /scannow".

I hope this helps!

(Reply marked as solution, thread closed.)

[–] deadbeef79000@lemmy.nz 4 points 2 weeks ago* (last edited 2 weeks ago)

I have X years experience with {keyword salad}.

Can you confirm {details already in the opening post}?

[–] lud@lemm.ee 4 points 3 weeks ago

answers.mirosoft.com is the worst. learn.microsoft.com can be decent at times though

[–] errer@lemmy.world 18 points 3 weeks ago

That’s why LLMs are so infuriatingly stubborn, they’re trained on these keyboard warriors

[–] JackbyDev@programming.dev 3 points 3 weeks ago

I had a decade old question marked as a duplicate and downvoted three times after years no no activity. SE is such a joke nowadays.

[–] moriquende@lemmy.world 7 points 3 weeks ago (1 children)

It can't be done, as an opening tag in html can contain anything in its attributes, even JavaScript (e.g. onclick handler).

[–] schnurrito@discuss.tchncs.de -1 points 3 weeks ago (1 children)
[–] moriquende@lemmy.world 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\">" >

[–] schnurrito@discuss.tchncs.de 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;.

[–] moriquende@lemmy.world 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>"'>

[–] kbal@fedia.io 0 points 3 weeks ago

It can be done with simple regex of the kind proposed in various answers there iff the html is known to be limited to the subset of html where that sort of thing can easily be made to work. The question does not tell us whether or not that is the case, so everyone is free to make their own assumptions and argue as if they know what's going on.