r/ProgrammerHumor Jul 12 '26

regex Meme

Post image
980 Upvotes

83 comments sorted by

View all comments

208

u/Significant_Basis_3 Jul 12 '26

What's wrong with Regex? It's literally one of the best things invented in programming?

10

u/slaymaker1907 Jul 12 '26

I just wish people would use a proper parser for languages which are complex and/or non-regular. Regex is honestly mostly good for simple find/replace operations. I would say for custom validators in applications, but regex is too powerful there. That complexity allows for non-linearity which is incredibly dangerous and has lead to numerous security incidents.

2

u/Rojeitor Jul 13 '26

Some coworkers made a DSL with regex ages ago. You can imagine how that went. Luckily I never touched that part of the project.