[ Web Proxy ]
URL:
Viewing: https://fr.cppreference.com/cpp/regex#Algorithms [Back]  [Original]

Regular expressions library cppreference.com
cppreference.com
Espaces de noms
Variantes

Regular expressions library

De cppreference.com
< cpp


 
 
Regular expressions bibliothque
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 itrateurs
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)
 

La bibliothque d'expressions rationnelles regex fournit une classe qui reprsente les expressions rationnelles, qui sont une sorte de mini-langage utilis pour effectuer de la reconnaissance de motifs dans les chanes de caractres.

Sont galement fournis dans la bibliothque d'expressions rationnelles, des classes utilitaires qui permettent l'utilisation de diffrents algorithmes, itrateurs, exceptions et des traits de type .

Classes principales

Ces classes encapsulent une expression rationnelle et les rsultats de la recherche de motifs dans une squence de caractres.

(C++11)
objet expression rgulire
Original:
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.

(classe gnrique) [edit]
(C++11)
identifie la squence de caractres correspondants par une sous-expression
Original:
identifies the sequence of characters matched by a sub-expression
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(classe gnrique) [edit]
identifie une correspondance d'expression rgulire, y compris tous les matchs de la sous-expression
Original:
identifies one regular expression match, including all 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.

(classe gnrique) [edit]

Algorithmes

Ces fonctions sont utilises pour appliquer l'expression rationnelle encapsule dans une regex une squence de caractres.

(C++11)
tente de faire correspondre une expression rgulire pour la squence de caractres entier
Original:
attempts to match a regular expression to the entire character sequence
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(fonction gnrique) [edit]
tente de faire correspondre une expression rgulire de toute partie de la squence de caractres
Original:
attempts to match a regular expression to any part of the character sequence
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(fonction gnrique) [edit]
remplace les occurrences d'une expression rgulire avec le texte de remplacement format
Original:
replaces occurrences of a regular expression with formatted replacement text
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(fonction gnrique) [edit]

Itrateurs

Les itrateurs regex sont utiliss pour parcourir l'ensemble des motifs trouvs dans une squence de caractre grce l'expression rationnelle.

parcourt tous les matches regex dans une squence de caractres
Original:
iterates through all regex matches within a character sequence
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(classe gnrique) [edit]
parcourt spcifi sous-expressions dans toutes les correspondances regex dans une chane donne ou par l'intermdiaire des sous-chanes ingales
Original:
iterates through the specified sub-expressions within all regex matches in a given string or through unmatched substrings
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(classe gnrique) [edit]

Exceptions

Cette classe dfinit le type des objets levs en tant qu'exceptions pour signaler les erreurs provenant de la bibliothque d'expressions rationnelles.

(C++11)
signale les erreurs gnres par la bibliothque d'expressions rgulires
Original:
reports errors generated by the regular expressions library
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(classe) [edit]

Traits

La classe regex traits est utilise pour encapsuler les aspects localisables d'une regex.

fournit mta-informations sur un type de caractre, requis par la bibliothque regex
Original:
provides metainformation about a character type, required by the regex library
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(classe gnrique) [edit]

Constantes

Defined in namespace std::regex_constants
options gnrales contrler 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]
options spcifiques l'appariement
Original:
options specific to matching
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(typedef) [edit]
(C++11)
dcrit les diffrents types d'erreurs d'appariement
Original:
describes different types of matching errors
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(typedef) [edit]

Web Proxy Viewer  |  New URL  |  Original Page