Difference between revisions of "cpp/regex/regex search"
(Added remaining function signatures.) |
(fix title) |
||
Line 1: | Line 1: | ||
− | {{cpp/title| | + | {{cpp/title|regex_search}} |
{{cpp/regex/sidebar}} | {{cpp/regex/sidebar}} | ||
{{ddcl list begin}} | {{ddcl list begin}} |
Revision as of 09:39, 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,
<td > (1) </td> <td class="t-dcl-nopad"> </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,
<td > (2) </td> <td class="t-dcl-nopad"> </td> </tr> <tr class="t-dcl ">
<td > class ST,
class SA,
class Allocator,
class CharT,
class Traits
> bool regex_search( const basic_string<charT, ST, SA>& s,
match_results<typename basic_string<charT, ST, SA>::const_iterator, Allocator>& m,
const basic_regex<charT, traits>& e,
<td > (3) </td> <td class="t-dcl-nopad"> </td> </tr> <tr class="t-dcl ">
<td > class BidirectionalIterator,
class CharT,
class Traits
> bool regex_search( BidirectionalIterator first, BidirectionalIterator last,
const basic_regex<charT, traits>& e,
<td > (4) </td> <td class="t-dcl-nopad"> </td> </tr> <tr class="t-dcl ">
<td > class CharT,
class Traits
> bool regex_search( const CharT* str,
const basic_regex<charT, traits>& e,
<td > (5) </td> <td class="t-dcl-nopad"> </td> </tr> <tr class="t-dcl ">
<td > class ST,
class SA,
class CharT,
class Traits
> bool regex_search( const basic_string<charT, ST, SA>& s,
const std::basic_regex<CharT,Traits>& e,
<td > (6) </td> <td class="t-dcl-nopad"> </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.