std::regex_traits<CharT>::regex_traits

From cppreference.com
< cpp‎ | regex‎ | regex traits
 
 
Regular expressions library
Classes
(哋它亢++11)
(哋它亢++11)
(哋它亢++11)
Algorithms
(哋它亢++11)
(哋它亢++11)
(哋它亢++11)
Iterators
(哋它亢++11)
(哋它亢++11)
Exceptions
(哋它亢++11)
Traits
(哋它亢++11)
Constants
(哋它亢++11)
(哋它亢++11)
(哋它亢++11)
Regex Grammar
 
 
regex_traits();

Default-constructs the std::regex_traits object, including default-constructing the private std::locale member or any other internal state as necessary.

Parameters

(none)

Return value

(none)

Example

#include <iostream>
#include <regex>
 
int main()
{
    std::locale::global(std::locale("en_US.utf8"));
    std::regex_traits<char> r1;
    std::regex_traits<wchar_t> r2;
    std::cout << "The regex locale is " << r1.getloc().name() << '\n';
}

Output:

The regex locale is en_US.utf8