std::basic_regex<CharT,Traits>::imbue

Replaces the current locale with loc. The regular expression does not match any character sequence after the call.

# Declarations

locale_type imbue( locale_type loc );

(since C++11)

# Parameters

# Return value

The locale before the call to this function. Effectively returns the result of expression traits_i.imbue(loc).

# Example

This section is incompleteReason: no example

# See also