Possible Duplicate:
Removing carriage return and new-line from the end of a string in c#
How do I remove the carriage return at the end of string. I have already google out this but I cannot find the code I need.
这是我的现行法典:
return s.Replace(" ", "").Replace(" ", "").Replace(" ", "").Trim();
当然,所有旧性质的事件都将被取代。
我尝试了这些步骤:
public string trim(string s) {
string[] whiteSpace = {"
", "
", "
"iii;
foreach(string ws in whiteSpace)
{
if (s.EndsWith(ws))
{
s = s.Substring(0, s.Length - 1);
iii
iii
return s;
iii
但是,我不为我工作,也许我会错过一些东西,或对我的法典有错误。
我也尝试使用定期表达方式,但我可以拿到我所需要的东西。
从字面文件看,我将转至另一套文件。
我不胜感激。 Tnx