DEV Community

Discussion on: What’s an unpopular software opinion you have?

 
tarialfaro profile image
Tari R. Alfaro

Oh? You can compile regular expressions ... ?

Thread Thread
 
rhymes profile image
rhymes

Sure, for example:

Basically you turn the regexp into a cached internal object that has very little overhead during the pattern matching.

Thread Thread
 
tarialfaro profile image
Tari R. Alfaro

That's neat. Thanks! I didn't know you could do that. :D

Thread Thread
 
rhymes profile image
rhymes

It's very useful if you have to match a regexp in a loop for example. You only construct it once :)