Difference between revisions of "cpp/regex/regex search"
(add std:: to get the links) |
(make lines shorter & add 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 | 1= | + | {{ddcl list item | num=1 | notes={{mark c++ feature}} | 1= |
template< | template< | ||
class BidirectionalIterator, | class BidirectionalIterator, | ||
Line 12: | Line 12: | ||
std::match_results<BidirectionalIterator,Allocator>& m, | std::match_results<BidirectionalIterator,Allocator>& m, | ||
const std::basic_regex<CharT,Traits>& e, | const std::basic_regex<CharT,Traits>& e, | ||
− | std::regex_constants::match_flag_type flags = std::regex_constants::match_default ); | + | std::regex_constants::match_flag_type flags = |
+ | std::regex_constants::match_default ); | ||
}} | }} | ||
− | {{ddcl list item | num=2 | 1= | + | {{ddcl list item | num=2 | notes={{mark c++ feature}} | 1= |
template< | template< | ||
class Allocator, | class Allocator, | ||
Line 25: | Line 26: | ||
std::regex_constants::match_default ); | std::regex_constants::match_default ); | ||
}} | }} | ||
− | {{ddcl list item | num=3 | 1= | + | {{ddcl list item | num=3 | notes={{mark c++ feature}} | 1= |
template< | template< | ||
class STraits, | class STraits, | ||
Line 41: | Line 42: | ||
std::regex_constants::match_default ); | std::regex_constants::match_default ); | ||
}} | }} | ||
− | {{ddcl list item | num=4 | 1= | + | {{ddcl list item | num=4 | notes={{mark c++ feature}} | 1= |
template< | template< | ||
class BidirectionalIterator, | class BidirectionalIterator, | ||
Line 51: | Line 52: | ||
std::regex_constants::match_default ); | std::regex_constants::match_default ); | ||
}} | }} | ||
− | {{ddcl list item | num=5 | 1= | + | {{ddcl list item | num=5 | notes={{mark c++ feature}} | 1= |
template< | template< | ||
class CharT, | class CharT, | ||
Line 60: | Line 61: | ||
std::regex_constants::match_default ); | std::regex_constants::match_default ); | ||
}} | }} | ||
− | {{ddcl list item | num=6 | 1= | + | {{ddcl list item | num=6 | notes={{mark c++ feature}} | 1= |
template< | template< | ||
class STraits, | class STraits, |
Revision as of 11:02, 27 October 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 BidirectionalIterator,
class Allocator,
class CharT,
class Traits
> bool regex_search( BidirectionalIterator first, BidirectionalIterator last,
std::match_results<BidirectionalIterator,Allocator>& m,
const std::basic_regex<CharT,Traits>& e,
std::regex_constants::match_flag_type flags =
<td > (1) </td> <td > Template:mark c++ feature </td> </tr> <tr class="t-dcl ">
<td > class Allocator,
class CharT,
class Traits
> bool regex_search( const CharT* str,
std::match_results<BidirectionalIterator,Allocator>& m,
const std::basic_regex<CharT,Traits>& e,
std::regex_constants::match_flag_type flags =
<td > (2) </td> <td > Template:mark c++ feature </td> </tr> <tr class="t-dcl ">
<td > class STraits,
class SAllocator,
class Allocator,
class CharT,
class Traits
> bool regex_search( const std::basic_string<CharT,STraits,SAllocator>& s,
match_results<
typename std::basic_string<CharT,STraits,SAllocator>::const_iterator,
Allocator
>& m,
const std::basic_regex<charT, traits>& e,
std::regex_constants::match_flag_type flags =
<td > (3) </td> <td > Template:mark c++ feature </td> </tr> <tr class="t-dcl ">
<td > class BidirectionalIterator,
class CharT,
class Traits
> bool regex_search( BidirectionalIterator first, BidirectionalIterator last,
const std::basic_regex<CharT,Traits>& e,
std::regex_constants::match_flag_type flags =
<td > (4) </td> <td > Template:mark c++ feature </td> </tr> <tr class="t-dcl ">
<td > class CharT,
class Traits
> bool regex_search( const CharT* str,
const std::basic_regex<CharT,Traits>& e,
std::regex_constants::match_flag_type flags =
<td > (5) </td> <td > Template:mark c++ feature </td> </tr> <tr class="t-dcl ">
<td > class STraits,
class SAllocator,
class CharT,
class Traits
> bool regex_search( const std::basic_string<CharT,STraits,SAllocator>& s,
const std::basic_regex<CharT,Traits>& e,
std::regex_constants::match_flag_type flags =
<td > (6) </td> <td > Template:mark c++ feature </td> </tr> Template:ddcl list end
1) Determines if there is a match between the regular express e
and some subsequence in the target character sequence [first,last)
. Match results are returned in m
.
2) Returns std::regex_search(str, str + std::char_traits<charT>::length(str), m, e, flags).
3) Returns std::regex_search(s.begin(), s.end(), m, e, flags).
4) The same as (1), omitting the match results.
5) Returns std::regex_search(str, str + std::char_traits<charT>::length(str), e, flags).
6) Returns std::regex_search(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 somewhere in the target sequence, Template:cpp otherwise.