是否有可能有一個單一但重複出現的regex.replace調用? 例如正則表達式重複替換
string dateText = "01\.02\\.2008";
string dateSeperators = @"\.|/|\\|-";
string result = Regex.Replace(dateText, dateSeperators, "."); // needs to be fixed. single call possible?
結果應該是「01.02.2008」。 當前我需要2次運行,首先運行上面的替換,然後替換多次出現的點。
+1爲先。 – Brian 2010-07-16 15:12:17