1. 程式人生 > >c#替換字元的多個空格多個換行及中文字元

c#替換字元的多個空格多個換行及中文字元

            xml = xml.Replace(" ", " ");
            xml = xml.Replace("\t", "");
            xml = Regex.Replace(xml, "[\r]{2,}", "\n");
            xml = xml.Replace("\n ", "\n");
            xml = xml.Replace(" \n", "\n");
            xml = Regex.Replace(xml, "[\n]{2,}", "\n");
            xml = Regex.Replace(xml, "[ ]{2,}", " ");