

If the input is "abc123xyz", it matches substring "123".This regex matches any numeric substring (of digits 0 to 9) of the input.In fact, it could match zero or more substrings of the input (with global modifier). A regex may match a portion of the input (i.e., substring) or the entire input.In this case, + matches one or more digits. The +, known as occurrence indicator (or repetition operator), indicates one or more occurrences ( 1+) of the previous sub-expression.In this example, matches any SINGLE character between 0 and 9 (i.e., a digit), where dash ( -) denotes the range. It matches any SINGLE character in the list. The, known as character class (or bracket list), encloses a list of characters.A regex ( regular expression) consists of a sequence of sub-expressions.E.g., the regex x matches substring "x" regex 9 matches "9" regex = matches "=" and regex matches Special Regex Characters: These characters have special meaning in regex (to be discussed below).

Character: All characters, except those having special meaning in regex, matches themselves.For novices, go to the next section to learn the syntax, before looking at these examples. This section is meant for those who need to refresh their memory. Getting started with regex may not be easy due to its geeky syntax, but it is certainly worth the investment of your time. Regex is supported in all the scripting languages (such as Perl, Python, PHP, and JavaScript) as well as general purpose programming languages such as Java and even word processors such as Word for searching texts. One line of regex can easily replace several dozen lines of programming codes. Regular Expression, or regex or regexp in short, is extremely and amazingly powerful in searching and manipulating text strings, particularly in processing text files.
