C# 用正则表达式替换字符串中所有特殊字符

xiaoxiao2021-02-27  478

public static String RemoveSpecialCharacter(String hexData)         {             return Regex.Replace(hexData, "[ \\[ \\] \\^ \\-_*×――(^)$%~!@#$…&%¥—+=<>《》!!???::•`·、。,;,.;\"‘’“”-]", "").ToUpper();         }
转载请注明原文地址: https://www.6miu.com/read-3070.html

最新回复(0)