std::regex_search
![]() |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
Defined in header <regex>
|
||
template< class BidirIt, class Alloc, class CharT, class Traits > |
(1) | (C + + 11以来) |
template< class Alloc, class CharT, class Traits > bool regex_search( const CharT* str, |
(2) | (C + + 11以来) |
template< class STraits, class SAlloc, class Alloc, class CharT, class Traits > |
(3) | (C + + 11以来) |
template< class BidirIt, class CharT, class Traits > |
(4) | (C + + 11以来) |
template< class CharT, class Traits > bool regex_search( const CharT* str, |
(5) | (C + + 11以来) |
template< class STraits, class SAlloc, class CharT, class Traits > |
(6) | (C + + 11以来) |
e
とターゲット文字シーケンス[first,last)
内の一部のサブシーケンスの間に一致があるかどうかを判断します。試合結果はm
で返されます.e
and some subsequence in the target character sequence [first,last)
. Match results are returned in m
.You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[編集] パラメータ
first, last | - | ターゲットの文字範囲
Original: the target character range The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
m | - | 試合結果
Original: the match results The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
str | - | ターゲット文字ヌルで終わるCスタイルの文字列
Original: a target character null-terminated C-style string The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
s | - | ターゲット文字のstd :: basic_stringの
Original: a target character std::basic_string The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
e | - | のstd :: regexの
Original: the std::regex The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
flags | - | マッチフラグ
Original: the match flags The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Type requirements | ||
-BidirIt must meet the requirements of BidirectionalIterator .
| ||
-Alloc must meet the requirements of Allocator .
|
[編集] 値を返します
You can help to correct and verify the translation. Click here for instructions.