std::basic_regex::imbue
Материал из cppreference.com
< cpp | regex | basic regex
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| locale_type imbue( locale_type loc ); |
(начиная с C++11) | |
Заменяет текущий язык с
loc. Регулярные выражения не совпадает ни с последовательности символов после вызова.Original:
Replaces the current locale with
loc. The regular expression does not match any character sequence after the call.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Эффективно называет traits_i.imbue(loc) где
traits_i является по умолчанию инициализируется экземпляр типа Traits хранится в объект регулярного выражения.Original:
Effectively calls traits_i.imbue(loc) where
traits_i is a default initialized instance of the type Traits stored within the regular expression object.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Содержание |
[править] Параметры
| loc | - | новый язык, чтобы использовать
Original: new locale to use The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[править] Возвращаемое значение
Языка до вызова этой функции. Эффективно возвращает результат выражения traits_i.imbue(loc).
Original:
The locale before the call to this function. Effectively returns the result of expression traits_i.imbue(loc).
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[править] Исключения
(Нет)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[править] Пример
| Этот раздел не завершён Причина: нет примера |
[править] См. также
| получать локальную информацию Original: get locale information The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (public функция-член) | |