A Regular Expression ("Regex") is a string with defined metacharacters
(which may vary among Regex engines) that is used by a Regex engine to
examine another string for, among other things, a match. You may wish to
refer to
http://www.opengroup.org/onlinepubs/007908799/xbd/re.html or other
sources for more info. They are used extensively in Perl programming
scripts.
As an example, if the Like operator supported regexes, then I could write a
line of code that would look something like this:
If cell.value Like "[A-Za-z]+ - [0-9]+" Then
'Do Something
End If
In the above snippet, where cell is a Range Object that represents a cell on
a Worksheet, the condition would be met if the cell contained one or more
upper or lowre case alphabetic characters followed by a space, then a
hyphen, then another space, then one or more numeric characters.