摘要: string text = " My test\nstring\r\n is\t quite long "; string trim = text.Trim();这个'trim' 字符串将会是:"My test\nstring\r\n is\t quite long" (31 characters)另一个清除C#空格方法是使用 String.Replace 方法, 但是这需要你通过调用多个方法来去除个别C#空格:string trim = text.Replace( " ", "" );trim = 阅读全文
posted @ 2012-07-26 22:22 孤獨龍 阅读(188) 评论(0) 推荐(0)