regex クラス : Delete(string) メソッド
説明
引数の正規表現パターンと一致するすべての文字列を削除した新しい文字列を取得します。
構文
regexInstance.Delete(string source)
引数
クラス | 名前 | 説明 |
string | source | 検索される文字列。 |
返り値
クラス | 説明 |
string | 正規表現パターンと一致するすべての文字列を削除した新しい文字列。 |
サンプルコード
1: | regex pattern = new regex("a+"); |
2: | string result = pattern.Delete("aaabbbaaccc"); // 結果は、"bbbccc"。 |
注意
これは、System.Text.RegularExpressions.Regex.Replace(String,String) メソッドのラッパーです。