close
用正則表示式取代。
正則表示式:"\s+"
注意反斜線!
程式範例:(C#)
string result = Regex.Replace(XML, @"\s+", "");
參考:Efficient way to remove ALL whitespace from String?
文章標籤
全站熱搜
用正則表示式取代。
正則表示式:"\s+"
注意反斜線!
程式範例:(C#)
string result = Regex.Replace(XML, @"\s+", "");
參考:Efficient way to remove ALL whitespace from String?
留言列表