1

私は正規表現を介してこれを行いたい: サンプル: は今日彼の祖父と彼の父を訪問します

正規表現を使用して太字の 2 つの父を選択するにはどうすればよいですか? どうもありがとう。

4

3 に答える 3

1
var matchCollection = Regex.Matches("father goes visit his grandfather and and his father today.", "\bfather\b");

foreach (Match m in matchCollection)
{
     // Process your code for each match
}
于 2013-04-21T10:02:19.220 に答える