Regular Expression
A regular expression (or "regex") is a search pattern used for matching one or more characters within a string. It can match specific characters, wildcards, and ranges of characters. Regular expressions were originally used by Unix utilities, such as vi and grep. However, they are now supported by many code editing applications and word processors on multiple platforms. Regular expressions can also be used in most major programming languages.
A regular expression can be as simple as a basic string, such as "app". The regex "app" would match strings containing the words "apps," "applications," and "inapplicable". A regular expression may also contain anchor characters ("^" and "$") which are used to specify the beginning and end of a line, respectively. Therefore, the regex "^apps" would match the string, "apps are great," but would not match the string, "I like apps."
Regular expressions can include dashes, which are used to match a range of characters, such as all lowercase letters. For example, the regex "[a-z]" would match "apps," but would not match the strings "Apps" or "123". The regex "[A-Za-z]" would match "Apps" and "[0-9]" would match "123". A period, which is the standard wildcard character in regular expressions, can be used to match any character (except an end-of-line character). A period followed by an asterisk (.*) matches zero or more instances, while a period followed by a plus (.+) matches one or more instances.
So what happens if you need to match a string containing a dash, asterisk, plus, or an anchor character? These characters can be included in a regular expression pattern by "escaping" them with a backslash ("\"). For example, to search for "$0.99", the regex would look like "\$0\.99". Backslashes are also used to search for non-printable characters. For example, "\r" matches a carriage return, "\n" matches a new line, and "\t" matches a tab character.
While it does not take much effort to create a basic regular expression, writing an advanced regex is not an easy task. Even the best programmers rarely get complex regular expressions right the first time. When used correctly, however, regular expressions are a powerful tool for searching, finding, and replacing specific text.