Make Regular Expressions the Easy Way
Introduction and The Problem
Regular Expressions have been around for a long time and can solve problems nothing else really seems to be able to. There are a lot of great examples of where to use them, and where to not use them. Every once in a while, a new product (or version of a product) comes out which includes regex support. Some people get excited about being able to use regular expressions. They tell other people about it.
Then they realize most people seem to think Regular Expresions, or regex for short, are the hardest problem in coding.
There are a group of people who get nervous about regex, or really just do not want to work with any regular expressions. I do not blame them; it looks weird.
However, if I can become proficient at regex, so can you. The following is a set of regular expressions I created, some in part due to what I am recommending in this post.
My ...