match クラス : Index ゲッタ
説明
部分文字列の元の文字列内の位置を取得します。
構文
matchInstance.Index
引数
無し。
返り値
クラス | 説明 |
int | 部分文字列の元の文字列内の位置。 |
サンプルコード
1: | regex pattern = new regex("(b+)"); |
2: | match firstMatch= pattern.MatchM("aaabbbaaccc"); // "bbb"。 |
3: | int index = firstMatch.Index; // 3。 |
注意
これは、System.Text.RegularExpressions.Match.Index プロパティのラッパーです。
位置は、0 から始まるインデックスで示されます。