std::basic_regex::imbue
De 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 ); |
(desde C++11) | |
Sustituye a la localización actual con
loc
. La expresión regular no coincide con cualquier secuencia de caracteres después de la llamada .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.
Efectivamente llama traits_i.imbue(loc) donde
traits_i
es una instancia predeterminada inicializa de la Traits
tipo almacenado en el objeto de expresión regular .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.
Contenido |
[editar] Parámetros
loc | - | nuevo local para su uso
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. |
[editar] Valor de retorno
La configuración regional antes de la llamada a esta función. Efectivamente devuelve el resultado de traits_i.imbue(loc) expresión .
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.
[editar] Excepciones
(Ninguno)
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.
[editar] Ejemplo
This section is incomplete Reason: no example |
[editar] Ver también
obtener información de configuración regional 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. (miembro público función) |