DEV Community

Discussion on: Intro to Regex for Web Developers

Collapse
 
maxwell_dev profile image
Max Antonucci

I recommend learning Regex if for no other reason than pulling off complex searches (and search and replaces) in code editors. A few Regex tricks can turn an otherwise tiresome "find, check, and replace in all the files" to an automated search and replace function. Great to see more content helpers coders get to that point!

Collapse
 
chrisachard profile image
Chris Achard

Yes! This is probably my number one use case as well; that, and trying to extract data from HTML or other messy data 😯 which I know, I know, isn't a good use case (I even say so in the post!) but for one-off tasks it's really powerful.