0%

過濾掉不合法的字元 使用 Regular Expression

過濾掉不合法的字元 使用 Regular Expression

醬子用就可以了
[^\W_]+

1
2
string s = @"zoo13579~!多奇數位@_$#%^%$&*().,>?]";
string r = Regex.Replace(s, @"[\W_]+", "");

The Will Will Web : 如何利用 .NET 的 Regex 過濾所有特殊字元 (其他語言適用)