Espaces de noms
Variantes
Affichages
Actions

std::basic_regex

De cppreference.com
< cpp‎ | 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>
template <

    class CharT = char,
    class Traits = std::regex_traits<CharT>

> class basic_regex;
(depuis C++11)
Le basic_regex modèle de classe offre un cadre général pour la tenue des expressions régulières .
Original:
The class template basic_regex provides a general framework for holding regular expressions.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Plusieurs spécialisations pour les types de caractères communs sont fournis:
Original:
Several specializations for common character types are provided:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Defined in header <regex>
Type d'
Original:
Type
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Definition
regex basic_regex<char>
wregex basic_regex<wchar_t>

Sommaire

[modifier] Types de membres

Type du membre Définition
value_type CharT
traits_type Traits
string_type Traits::string_type
locale_type Traits::locale_type
flag_type std::regex_constants::syntax_option_type

[modifier] Fonctions membres

construit l'objet regex
Original:
constructs the regex object
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(fonction membre publique) [edit]
Détruit l'objet regex
Original:
destructs the regex object
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(fonction membre publique) [edit]
affecte le contenu
Original:
assigns the contents
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(fonction membre publique) [edit]
affecte le contenu
Original:
assigns the contents
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(fonction membre publique) [edit]
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.
retourne le nombre de nette sous-expressions dans l'expression régulière
Original:
returns the number of marked sub-expressions within the regular expression
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(fonction membre publique) [edit]
retourne les indicateurs de syntaxe
Original:
returns the syntax flags
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(fonction membre publique) [edit]
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.
obtenir de l'information locale
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.

(fonction membre publique) [edit]
définir les informations de localisation
Original:
set locale information
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(fonction membre publique) [edit]
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.
permute les contenus
Original:
swaps the contents
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(fonction membre publique) [edit]

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.

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
ignore la casse des caractères lors de l'appariement
Original:
ignores case when matching characters
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
nosubs
ne pas stocker sous-expression matchs
Original:
does not store sub-expression matches
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
optimize
plus rapide adaptation, plus lent de la construction
Original:
faster matching, slower construction
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
collate
rend étendue des expressions sensibles aux paramètres régionaux
Original:
makes range expressions 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
utilise un ECMA-262 (Perl 5) syntaxe
Original:
uses an ECMA-262 (Perl 5) syntax
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
basic
utilise une syntaxe POSIX de base des expressions régulières
Original:
uses a POSIX basic regular expression syntax
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
extended
utilise une syntaxe POSIX expression régulière étendue
Original:
uses a POSIX extended regular expression syntax
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
awk
awk utilise un' compatible syntaxe
Original:
uses an awk-compatible syntax
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
grep
utilise un' grep compatible syntaxe
Original:
uses a grep-compatible syntax
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
egrep
utilise un grep' extension compatible avec la syntaxe
Original:
uses an extended grep-compatible syntax
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[modifier] Fonctions annexes

l'algorithme spécialisé std::swap
Original:
specializes the std::swap algorithm
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(fonction générique) [edit]