Regular Expression Objects
Let's take a look at the various types and grammars which C++ provides for regex objects.
We'll cover the following...
Objects of regular type expressions are instances of the class template template <class charT, class traits= regex_traits <charT>> class basic_regex
parametrized by their character type and ...