The Wayback Machine - https://web.archive.org/web/20180518001006/http://pt.cppreference.com:80/w/cpp/regex/basic_regex
Espaços nominais
Variantes
Acções

std::basic_regex

Da cppreference.com
< cpp‎ | regex

 
 
Biblioteca de expressões regulares
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)
Algoritmos
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)
Iteradores
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)
Exceções
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)
Características
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
Funções de membro
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
Observadores
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
Localidade
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
Modificadores
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
Funções não-membros
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)
 
Defined in header <regex>
template<

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

>class basic_regex;
(a partir do C++ 11)
O basic_regex modelo de classe fornece um quadro geral para a realização de expressões regulares.
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.
Várias especializações para tipos de caracteres comuns são fornecidos:
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>
Tipo
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
regexbasic_regex<char>
wregexbasic_regex<wchar_t>

Índice

[editar]Tipos de membro

Tipo de membro
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_typeCharT
traits_typeTraits
string_typeTraits::string_type
locale_typeTraits::locale_type
flag_typestd::regex_constants::syntax_option_type

[editar]Funções de membro

constructs the regex object
(função pública membro)[edit]
destrói o objeto 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.

(função pública membro)[edit]
atribui o conteúdo
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.

(função pública membro)[edit]
atribui o conteúdo
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.

(função pública membro)[edit]
Observadores
Original:
Observers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
retorna o número de sub-expressões marcante dentro da expressão regular
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.

(função pública membro)[edit]
returns the syntax flags
(função pública membro)[edit]
Localidade
Original:
Locale
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
obter informações de localidade
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.

(função pública membro)[edit]
definir informações de localidade
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.

(função pública membro)[edit]
Modificadores
Original:
Modifiers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Trocar o conteúdo
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.

(função pública membro)[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.

Valor
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
ignora caso quando a correspondência de caracteres
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
não armazena sub-expressão partidas
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
mais rápido correspondente construção, mais lento
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
faz expressões alcance sensíveis à localidade
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
usa um ECMA-262 (Perl 5) sintaxe
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
usa um POSIX básica sintaxe de expressão regular
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
utiliza uma sintaxe POSIX expressão regular extendida
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
utiliza um' awk sintaxe compatível
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
utiliza um' grep sintaxe compatível
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
utiliza um grep' estendido compatível sintaxe
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.

[editar]Não-membros funções

o algoritmo especializado 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.

(modelo de função)[edit]
close