C# 刪除字串中任何位置的空格
阿新 • • 發佈:2019-02-02
另一版本如下:
- 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 = trim.Replace( "/r"
- trim = trim.Replace( "/n" , "" );
- trim = trim.Replace( "/t" , "" );
這裡最好的方法就是使用正則表示式.你能使用Regex.Replace方法, 它將所有匹配的替換為指定的字元.在這個例子中,使用正則表示式匹配符"/s",它將匹配任何空格包含在這個字串裡C#空格, tab字元, 換行符和新行(newline).
- string trim = Regex.Replace( text, @"/s" , "" );
這個'trim' 字串將會是:
- "Myteststringisquitelong"