std::regex_search
![]() |
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
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. |
型の要件 | ||
-BidirIt は BidirectionalIterator
の要求を満足しなければなりません。 | ||
-Alloc は Allocator
の要求を満足しなければなりません。 |
[編集] 値を返します
You can help to correct and verify the translation. Click here for instructions.