/// <summary>
/// 替换文本中的空格和换行
/// </summary>
public static string ReplaceSpace(string str)
{
string s = str;
s = s.Replace(" ", " ");
s = s.Replace("\n", "<BR />");
return s;
}
/// <summary>
/// 替换文本中的空格和换行
/// </summary>
public static string ReplaceSpace(string str)
{
string s = str;
s = s.Replace(" ", " ");
s = s.Replace("\n", "<BR />");
return s;
}