111,094
社区成员




string str = @"ttt\r\n\ddd ".Replace("\\r\\n","\r\n");
string text = @"ttt\r\n\ddd ";
string result = text.Replace("\\r\\n", "<br/>");
result = result.Replace("\\", "");
Response.Write(result);