摘要:
/// /// 检测是否有Sql危险字符 /// /// 要判断字符串 /// 判断结果 public static bool IsSafeSqlString(string str) { return !Regex.IsMatch(str, @"[-|;|,|\/|\(|... 阅读全文
摘要:
/// /// 字符串字符处理 /// /// 等待处理的字符串 /// 处理后的字符串 /// //把TXT代码转换成HTML格式 public static String ToHtml(string Input) { StringBuilder sb... 阅读全文
摘要:
/// /// 普通集合转换Json /// /// 集合对象 /// Json字符串 public static string ToArrayString(IEnumerable array) { string jsonString = "["; ... 阅读全文
摘要:
/// /// DataSet转换为Json /// /// DataSet对象 /// Json字符串 public static string ToJson(DataSet dataSet) { string jsonString = "{"; ... 阅读全文
摘要:
/// /// DataReader转换为Json /// /// DataReader对象 /// Json字符串 public static string ToJson(DbDataReader dataReader) { StringBuilder jso... 阅读全文
摘要:
/// /// 中文转unicode /// /// public static string unicode_0(string str) { string outStr = ""; if (!string.IsNullOrEmpty(str)) ... 阅读全文
摘要:
public static string StripHTML(string html) { try { System.Text.RegularExpressions.Regex regex1 = new System.Text.RegularExpressions.Regex(@"标记 ... 阅读全文
摘要:
/// /// Unicode 转换 ASCII /// /// 解码内容 /// public static string unHTMLEncode(string theText) { try { string... 阅读全文
摘要:
/// /// 键值数据保存XML文件 /// /// 文件名 /// 数据 public static bool SaveXmlFile(string filePath, string fileName, SerializableDictionary data) { ... 阅读全文