Difference between revisions of "cpp/regex/regex match"
(replace *Allocator with Alloc for brevity) |
m (Text replace - "{{mark c++11 feature}}" to "{{mark since c++11}}") |
||
Line 3: | Line 3: | ||
{{ddcl list begin}} | {{ddcl list begin}} | ||
{{ddcl list header | regex}} | {{ddcl list header | regex}} | ||
− | {{ddcl list item | num=1 | notes={{mark c++11 | + | {{ddcl list item | num=1 | notes={{mark since c++11}} | 1= |
template< class BidirectionalIterator, | template< class BidirectionalIterator, | ||
class Alloc, class CharT, class Traits > | class Alloc, class CharT, class Traits > | ||
Line 12: | Line 12: | ||
std::regex_constants::match_default ); | std::regex_constants::match_default ); | ||
}} | }} | ||
− | {{ddcl list item | num=2 | notes={{mark c++11 | + | {{ddcl list item | num=2 | notes={{mark since c++11}} | 1= |
template< class BidirectionalIterator, | template< class BidirectionalIterator, | ||
class CharT, class Traits > | class CharT, class Traits > | ||
Line 20: | Line 20: | ||
std::regex_constants::match_default ); | std::regex_constants::match_default ); | ||
}} | }} | ||
− | {{ddcl list item | num=3 | notes={{mark c++11 | + | {{ddcl list item | num=3 | notes={{mark since c++11}} | 1= |
template< class CharT, class Alloc, class Traits > | template< class CharT, class Alloc, class Traits > | ||
bool regex_match( const CharT* str, | bool regex_match( const CharT* str, | ||
Line 28: | Line 28: | ||
std::regex_constants::match_default ); | std::regex_constants::match_default ); | ||
}} | }} | ||
− | {{ddcl list item | num=4 | notes={{mark c++11 | + | {{ddcl list item | num=4 | notes={{mark since c++11}} | 1= |
template< class STraits, class SAlloc, | template< class STraits, class SAlloc, | ||
class Alloc, class CharT, class Traits > | class Alloc, class CharT, class Traits > | ||
Line 40: | Line 40: | ||
std::regex_constants::match_default ); | std::regex_constants::match_default ); | ||
}} | }} | ||
− | {{ddcl list item | num=5 | notes={{mark c++11 | + | {{ddcl list item | num=5 | notes={{mark since c++11}} | 1= |
template< class CharT, class Traits > | template< class CharT, class Traits > | ||
bool regex_match( const CharT* str, | bool regex_match( const CharT* str, | ||
Line 47: | Line 47: | ||
std::regex_constants::match_default ); | std::regex_constants::match_default ); | ||
}} | }} | ||
− | {{ddcl list item | num=6 | notes={{mark c++11 | + | {{ddcl list item | num=6 | notes={{mark since c++11}} | 1= |
template< class STraits, class SAlloc, | template< class STraits, class SAlloc, | ||
class CharT, class Traits > | class CharT, class Traits > |
Revision as of 14:53, 24 December 2011
Template:cpp/regex/sidebar Template:ddcl list begin <tr class="t-dsc-header">
<td><regex>
<td></td> <td></td> </tr> <tr class="t-dcl ">
<td > class Alloc, class CharT, class Traits >
bool regex_match( BidirectionalIterator first, BidirectionalIterator last,
std::match_results<BidirectionalIterator,Alloc>& m,
const std::basic_regex<CharT,Traits>& e,
std::regex_constants::match_flag_type flags =
<td > (1) </td> <td > (since C++11) </td> </tr> <tr class="t-dcl ">
<td > class CharT, class Traits >
bool regex_match( BidirectionalIterator first, BidirectionalIterator last,
const std::basic_regex<CharT,Traits>& e,
std::regex_constants::match_flag_type flags =
<td > (2) </td> <td > (since C++11) </td> </tr> <tr class="t-dcl ">
<td >bool regex_match( const CharT* str,
std::match<const CharT*,Alloc>& m,
const std::basic_regex<CharT,Traits>& e,
std::regex_constants::match_flag_type flags =
<td > (3) </td> <td > (since C++11) </td> </tr> <tr class="t-dcl ">
<td > class Alloc, class CharT, class Traits >
bool regex_match( const std::basic_string<CharT,STraits,SAlloc>& s,
std::match_results<
typename std::basic_string<CharT,STraits,SAlloc>::const_iterator,
Alloc
>& m,
const std::basic_regex<CharT,Traits>& e,
std::regex_constants::match_flag_type flags =
<td > (4) </td> <td > (since C++11) </td> </tr> <tr class="t-dcl ">
<td >bool regex_match( const CharT* str,
const std::basic_regex<CharT,Traits>& e,
std::regex_constants::match_flag_type flags =
<td > (5) </td> <td > (since C++11) </td> </tr> <tr class="t-dcl ">
<td > class CharT, class Traits >
bool regex_match( const std::basic_string<CharT, STraits, SAlloc>& s,
const std::basic_regex<CharT,Traits>& e,
std::regex_constants::match_flag_type flags =
<td > (6) </td> <td > (since C++11) </td> </tr> Template:ddcl list end
1) Determines if there is a match between the regular express e
and the target character sequence [first,last)
. Match results are returned in m
.
2) Behaves as (1) above, omitting the match results.
3) Returns std::regex_match(str, str + std::char_traits<charT>::length(str), m, e, flags).
4) Returns std::regex_match(s.begin(), s.end(), m, e, flags).
5) Returns std::regex_match(str, str + std::char_traits<charT>::length(str), e, flags).
6) Returns std::regex_match(s.begin(), s.end(), e, flags).
Parameters
first, last | - | the target character range |
m | - | the match results |
str | - | a target character null-terminated C-style string |
s | - | a target character std::basic_string |
e | - | the std::regex |
flags | - | the match flags |
Return value
Returns Template:cpp if a match exists, Template:cpp otherwise.