Regular expressions library
Aus cppreference.com
< cpp
![]() | 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. |
Der reguläre Ausdrücke Bibliothek bietet eine Klasse, die reguläre Ausdrücke darstellt, die eine Art von Mini-Sprache verwendet, um Pattern Matching in Strings durchzuführen sind .
Original:
The regular expressions library provides a class that represents reguläre Ausdrücke, which are a kind of mini-language used to perform pattern matching within strings.
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.
Auch im regulären Ausdrücken Bibliothek zur Verfügung stehen Utility-Klassen, die Unterstützung bieten für verschiedene Algorithmen, Iteratoren, Ausnahmen und Exterieur .
Original:
Also provided in the regular expressions library are utility classes that provide support for various algorithms, iterators, exceptions, and type traits.
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.
Inhaltsverzeichnis |
[Bearbeiten]Hauptklassen
Diese Klassen kapseln einen regulären Ausdruck und die Ergebnisse der einen regulären Ausdruck passen innerhalb einer Zielsequenz von Zeichen .
Original:
These classes encapsulate a regular expression and the results of matching a regular expression within a target sequence of characters.
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.
(C++11) | regulären Ausdrucks 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. (Klassen-Template) |
(C++11) | identifiziert die Folge von Zeichen durch einen Sub-Ausdruck passen 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. (Klassen-Template) |
(C++11) | identifiziert einen regulären Ausdruck, inkl. aller Unterseiten Ausdruck übereinstimmt 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. (Klassen-Template) |
[Bearbeiten]Algorithmen
Diese Funktionen werden verwendet, um den regulären Ausdruck in einem regex zu einer Zielsequenz von Zeichen gekapselt dem ..
Original:
These functions are used to apply the regular expression encapsulated in a regex to a target sequence of characters..
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.
(C++11) | Versuche, einen regulären Ausdruck für die gesamte Zeichenfolge entsprechen 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. (Funktions-Template) |
(C++11) | Versuche, einen regulären Ausdruck zu jedem Teil der Zeichenfolge entsprechen 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. (Funktions-Template) |
(C++11) | replaces occurrences of a regular expression with formatted replacement text (Funktions-Template) |
[Bearbeiten]Iteratoren
Die regex Iteratoren werden verwendet, um die gesamte Menge der regulären Ausdrucks Spiele innerhalb einer Sequenz gefunden durchqueren .
Original:
The regex iterators are used to traverse the entire set of regular expression matches found within a sequence.
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.
(C++11) | durchläuft alle regex Spiele innerhalb einer Zeichenfolge 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. (Klassen-Template) |
(C++11) | durchläuft der angegebenen Sub-Ausdrücke in allen regex Spiele in einem String oder durch unübertroffene Teilstrings 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. (Klassen-Template) |
[Bearbeiten]Ausnahmen
Diese Klasse definiert die Art der Objekte als Ausnahmen ausgelöst Fehler aus dem regulären Ausdrücken Bibliothek berichten .
Original:
This class defines the type of objects thrown as exceptions to report errors from 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.
You can help to correct and verify the translation. Click here for instructions.
(C++11) | meldet Fehler durch die reguläre Ausdrücke Bibliothek erzeugt 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. (Klasse) |
[Bearbeiten]Traits
Die Regex Merkmale Klasse wird verwendet, um die lokalisierbaren Aspekte eines regex kapseln .
Original:
The regex traits class is used to encapsulate the localizable aspects of a regex.
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.
(C++11) | bietet Metainformationen über einen Charakter-Typ, durch die regex-Bibliothek erforderlich 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. (Klassen-Template) |
[Bearbeiten]Konstanten
definiert in Namensraum std::regex_constants | |
(C++11) | allgemeinen Optionen Steuerung regex Verhalten 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) |
(C++11) | spezifische Optionen, um passende 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) |
(C++11) | beschreibt verschiedene Arten von übereinstimmenden Fehlern 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) |