正則表達式-匹配標點符號

原文地址html   string testStr = "你好,測試。"; Regex reg = new Regex(@"\p{P}"); testStr = reg.Replace(testStr, ""); //testStr=你好測試    Unicode 編碼並不僅是爲某個字符簡單定義了一個編碼,並且還將其進行了歸類。  \pP 其中的小寫 p 是 property 的意思,表示 Uni
相關文章
相關標籤/搜索