regex クラス : GroupCount(string) メソッド

このメソッドは、Rtype.Regex.dll Ver 1.0.0.1 で削除されています。

説明

グループの数を取得します。

構文

regexInstance.GroupCount(string source)

引数

クラス名前説明
stringsource検索される文字列。

返り値

クラス説明
intグループの数。

サンプルコード

1:

regex pattern = new regex("(a+)");

2:

int count = pattern.GroupCount("aaabbbaaccc"); // 結果は、2。

注意

これは、System.Text.RegularExpressions.Match.Groups.Count プロパティのラッパーです。

このメソッドは、Rtype.Regex.dll Ver 1.0.0.1 で削除されています。

参照リンク

Copyright © Cooker All rights reserved.