/// <summary> /// 移除HTML标签 /// </summary> /// <param name="value"></param> /// <returns></returns> public static string RemoveHtml(this string value) { return(string.IsNullOrEmpty(value) ? value : StringHelper.RemoveHtml(value)); }