Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 2.01 KB

01 Avoid using regex whenever possible.md

File metadata and controls

23 lines (17 loc) · 2.01 KB

Avoid using regex whenever possible

Let's face it, regex is hard. So avoid using them whenever possible. Just to name a few cases where you should absolutely avoid them with a suitable alternative solution:

A few other cases you might consider avoiding:

* It might not work with internationalized domains and email addresses. See top comments at the documentation.