Regex.Matches メソッド (String)
指定した入力文字列内で、正規表現と一致する対象をすべて検索します。
Overloads Public Function Matches( _
ByVal input As String _) As MatchCollection
[C#]
public MatchCollection Matches(stringinput);
[C++]
public: MatchCollection* Matches(String* input);
[JScript]
public function Matches(
input : String) : MatchCollection;
パラメータ
- input
一致する対象を検索する文字列。
戻り値
検索によって見つかった Match オブジェクトの MatchCollection 。
解説
Matches メソッドは Match メソッドに似ていますが、match= Match (...)、続けて Match.NextMatch () のように呼び出しを繰り返した結果、連続して一致した複数の対象リストを返す点が異なります。コレクションは、連続して一致した対象だけを格納し、一致しないものが見つかった時点で末尾をなします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET
参照
Regex クラス | Regex メンバ | System.Text.RegularExpressions 名前空間 | Regex.Matches オーバーロードの一覧