有点特别的是,在我们使用replace进行换行符的替换时,需要按顺序进行。
private string cleanString(string newStr) { string tempStr = newStr.Replace("\n", ""); return tempStr = tempStr.Replace("\r", ""); }
2023-10-21 17:21:22
有点特别的是,在我们使用replace进行换行符的替换时,需要按顺序进行。
private string cleanString(string newStr) { string tempStr = newStr.Replace("\n", ""); return tempStr = tempStr.Replace("\r", ""); }