Espaces de noms
Variantes
Actions

std::basic_regex constants

De cppreference.com
< cpp‎ | regex‎ | basic regex

 
 
Regular expressions bibliothèque
Classes
Original:
Classes
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
basic_regex (C++11)
sub_match (C++11)
match_results (C++11)
Algorithmes
Original:
Algorithms
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
regex_match (C++11)
regex_search (C++11)
regex_replace (C++11)
Les itérateurs
Original:
Iterators
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
regex_iterator (C++11)
regex_token_iterator (C++11)
Exceptions
Original:
Exceptions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
regex_error (C++11)
Traits
Original:
Traits
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
regex_traits (C++11)
Constantes
Original:
Constants
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
syntax_option_type (C++11)
match_flag_type (C++11)
error_type (C++11)
 
std::basic_regex
Fonctions membres
Original:
Member Functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
basic_regex::basic_regex
basic_regex::~basic_regex
basic_regex::operator=
basic_regex::assign
Des observateurs
Original:
Observers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
basic_regex::mark_count
basic_regex::flags
Locale
Original:
Locale
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
basic_regex::getloc
basic_regex::imbue
Modificateurs
Original:
Modifiers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
basic_regex::swap
Constantes
Original:
Constants
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
basic_regex constants
Fonctions non-membres
Original:
Non-member Functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
swap(std::basic_regex)
 
Déclaré dans l'en-tête <regex>
staticconstexprstd::regex_constants::syntax_option_type icase =

    std::regex_constants::icase;
staticconstexprstd::regex_constants::syntax_option_type nosubs =
    std::regex_constants::nosubs;
staticconstexprstd::regex_constants::syntax_option_type optimize =
    std::regex_constants::optimize;
staticconstexprstd::regex_constants::syntax_option_type collate =
    std::regex_constants::collate;
staticconstexprstd::regex_constants::syntax_option_type ECMAScript =
    std::regex_constants::ECMAScript;
staticconstexprstd::regex_constants::syntax_option_type basic =
    std::regex_constants::basic;
staticconstexprstd::regex_constants::syntax_option_type extended =
    std::regex_constants::extended;
staticconstexprstd::regex_constants::syntax_option_type awk =
    std::regex_constants::awk;
staticconstexprstd::regex_constants::syntax_option_type grep =
    std::regex_constants::grep;
staticconstexprstd::regex_constants::syntax_option_type egrep =

    std::regex_constants::egrep;
std::basic_regex définit plusieurs constantes qui régissent la syntaxe générale correspondant regex .
Original:
std::basic_regex defines several constants that govern general regex matching syntax.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Ces constantes sont dupliqués à partir std::regex_constants:
Original:
These constants are duplicated from std::regex_constants:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Valeur
Original:
Value
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Effect(s)
icase
Correspondance caractères doit être effectuée sans respecter la casse .
Original:
Character matching should be performed without regard to case.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
nosubs
Lors de l'exécution matchs, pas de matchs sous-expression doit être stocké dans la structure std::regex_match fourni .
Original:
When performing matches, no sub-expression matches should be stored in the supplied std::regex_match structure.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
optimize
Charge le moteur d'expressions régulières à faire correspondre plus rapidement, avec le coût potentiel de faire de la construction plus lente. Par exemple, cela pourrait signifier la conversion d'un FSA non-déterministe à une déterministe FSA .
Original:
Instructs the regular expression engine to make matching faster, with the potential cost of making construction slower. For example, this might mean converting a non-deterministic FSA to a deterministic FSA.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
collate
Les plages de caractères de la forme "[ab]" sera sensible locale .
Original:
Character ranges of the form "[a-b]" will be locale sensitive.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
ECMAScript
Utilisez le code ECMAScript (JavaScript) grammaire expression régulière (ECMA-262 grammar documentation), modifié pour supporter des éléments d'assemblage, les classes de personnages, et des classes d'équivalence de POSIX, et les alias de classes de caractères \d, \D, \s, \S, \w et \W sont fabriqués locale-sensibles
Original:
Use the ECMAScript (JavaScript) regular expression grammar (ECMA-262 grammar documentation), modified to support collating elements, character classes, and equivalence classes from POSIX, and the character class aliases \d, \D, \s, \S, \w, and \W are made locale-sensitive
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
basic
Utilisez la grammaire de base des expressions régulières POSIX (grammar documentation) .
Original:
Use the basic POSIX regular expression grammar (grammar documentation).
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
extended
Utilisez la grammaire prolongée expression rationnelle POSIX (grammar documentation) .
Original:
Use the extended POSIX regular expression grammar (grammar documentation).
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
awk
Utilisez la grammaire expression régulière utilisée par l'utilitaire awk' dans POSIX (grammar documentation)
Original:
Use the regular expression grammar used by the awk utility in POSIX (grammar documentation)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
grep
Utilisez la grammaire expression régulière utilisée par l'utilitaire grep' dans POSIX. C'est effectivement la même que l'option basic avec l'ajout du saut de ligne '\ n' comme un séparateur d'alternance .
Original:
Use the regular expression grammar used by the grep utility in POSIX. This is effectively the same as the basic option with the addition of newline '\n' as an alternation separator.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
egrep
Utilisez la grammaire expression régulière utilisée par l'utilitaire grep', avec l'option-E, dans POSIX. C'est effectivement la même que l'option extended avec l'ajout du saut de ligne '\ n' comme un séparateur d'alternance dans addtion à «| '.
Original:
Use the regular expression grammar used by the grep utility, with the -E option, in POSIX. This is effectively the same as the extended option with the addition of newline '\n' as an alternation separator in addtion to '|'.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[modifier]Voir aussi

options générales contrôler le comportement des regex
Original:
general options controlling regex behavior
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(typedef)[edit]
close