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