1
這些都是字符,我必須禁止:不允許特定的字符使用正則表達式的Dropbox
\/: ? * < > " |
繼承人是我到目前爲止有:
Regex r = new Regex("(?:[^a-z0-9 ]|(?<=['\"])s)", RegexOptions.IgnoreCase | RegexOptions.CultureInvariant | RegexOptions.Compiled);
string cleanedFileName = r.Replace(file.FileName, String.Empty);
但是從我的理解是禁止所有的特殊字符。
你需要一個正則表達式?你可以簡單地鏈接所有字符的'.Replace()'。 – Stijn
更快嗎? –
是的,是的。 – Igor