public static string ToStringNR(this Object o)
{
return o.ToString().Replace("\n", "").Replace("\r", "").Replace("\t", "").Replace("\\", "").Replace("'", "''");
}
过滤特殊符号
最新推荐文章于 2021-07-15 09:47:48 发布
public static string ToStringNR(this Object o)
{
return o.ToString().Replace("\n", "").Replace("\r", "").Replace("\t", "").Replace("\\", "").Replace("'", "''");
}