去除换行符
一般处理可以使用 Replace("\r\n", ""); 来替换
如果文件路径带换行符的会错误(路径中有非法字符或者系统找不到文件)
string s = @"C:\Windows\System32\cmd.exe" + "\r\n"; richTextBox1.LoadFile(s);
string s = @"C:\Windows\System32\cmd.exe" + "\n";
System.Diagnostics.Process.Start(s);
替换\r
textBox1.Text =textBox1.Text.Replace("\r", "");
替换 \n
textBox1.Text =textBox1.Text.Replace("\n", "");