c# 去除字符串中的换行符 " "

private string cleanString(string newStr)
    {
        string tempStr = newStr.Replace("
", "");
        return tempStr = tempStr.Replace("
", "");
    }

在我们使用replace进行换行符的替换时,需要按顺序进行。

你可能感兴趣的