Namensräume
Varianten
Aktionen

std::basic_regex

Aus cppreference.com
< cpp‎ | regex

 
 
Reguläre Ausdrücke Bibliothek
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)
Algorithmen
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)
Iteratoren
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)
Ausnahmen
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)
Konstanten
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
Member-Funktionen
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
Beobachter
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
Modifiers
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
Konstanten
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
Non-member-Funktionen
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)
 
definiert in Header <regex>
template <

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

> class basic_regex;
(seit C++11)
Das Klassen-Template basic_regex bietet einen allgemeinen Rahmen zur Aufnahme regulärer Ausdrücke .
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.
Mehrere Spezialisierungen für gemeinsame Charakter-Typen stehen zur Verfügung:
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.
definiert in Header <regex>
Type
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>

Inhaltsverzeichnis

[Bearbeiten] Mitglied Typen

Mitglied Typ
Original:
Member type
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Definition
value_type CharT
traits_type Traits
string_type Traits::string_type
locale_type Traits::locale_type
flag_type std::regex_constants::syntax_option_type

[Bearbeiten] Member-Funktionen

constructs the regex object
(öffentliche Elementfunktion) [edit]
zerstört sich die Regex-Objekt
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.

(öffentliche Elementfunktion) [edit]
ordnet die Inhalte
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.

(öffentliche Elementfunktion) [edit]
ordnet die Inhalte
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.

(öffentliche Elementfunktion) [edit]
Beobachter
Original:
Observers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
gibt die Anzahl der markierten Sub-Ausdrücke innerhalb des regulären Ausdrucks
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.

(öffentliche Elementfunktion) [edit]
returns the syntax flags
(öffentliche Elementfunktion) [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.
erhalten Informationen über die Sprachumgebung
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.

(öffentliche Elementfunktion) [edit]
gesetzte Gebietsschema Informationen
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.

(öffentliche Elementfunktion) [edit]
Modifiers
Original:
Modifiers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
tauscht die Inhalte
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.

(öffentliche Elementfunktion) [edit]

Konstanten
Original:
Constants
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Value
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
ignoriert Fall, wenn übereinstimmenden Zeichen
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
speichert keine sub-Ausdruck übereinstimmt
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
schnellere Anpassung, langsamer Aufbau
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
macht Wertebereichsausdrücke locale-sensitive
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
verwendet ein ECMA-262 (Perl 5) Syntax
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
verwendet eine POSIX grundlegende Syntax für reguläre Ausdrücke
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
verwendet eine POSIX erweiterte Syntax für reguläre Ausdrücke
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
verwendet eine awk-kompatiblen Syntax
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
verwendet eine grep-kompatiblen Syntax
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
verwendet eine erweiterten grep-kompatiblen Syntax
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.

[Bearbeiten] Non-Member-Funktionen

spezialisiert die std::swap Algorithmus
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.

(Funktions-Template) [edit]