這個我這裡自己一直用的幾個函式,下面貼出來。
希望盡量不是直接要例項就去用,而不關心他本來的意義和實現思路等。加油!
using system;
using system.collections.generic;
using system.text;
using system.text.regularexpressions;
///
/// 對字串進行檢查和替換其中的特殊字元
///
///
///
public static string htmltotxt(string strhtml)
)|/s)*?(///s*)?>",
@"([/r/n])[/s]+",
@"&(quot|#34);",
@"&(amp|#38);",
@"&(lt|#60);",
@"&(gt|#62);",
@"&(nbsp|#160);",
@"&(iexcl|#161);",
@"&(cent|#162);",
@"&(pound|#163);",
@"&(copy|#169);",
@"(/d+);",
@"-->",
@"regex regex = new regex(aryreg[i], regexoptions.ignorecase);
stroutput = regex.replace(stroutput, string.empty);}
stroutput.replace("<", "");
stroutput.replace(">", "");
stroutput.replace("/r/n", "");
return stroutput;}
***************==另外兩個函式********************=
///
/// 替換html中的特殊字元
///
/// 需要進行替換的文字。
/// 替換完的文字。
public string htmlencode(string thestring)
///
/// 恢復html中的特殊字元
///
/// 需要恢復的文字。
/// 恢復好的文字。
public string htmldiscode(string thestring)
我收藏的特殊字元過濾函式
這個我這裡自己一直用的幾個函式,下面貼出來。希望盡量不是直接要例項就去用,而不關心他本來的意義和實現思路等。加油!using system using system.collections.generic using system.text using system.text.regularexpr...
php 過濾特殊字元函式
1.過濾html str htmlspecialchars decode str str preg replace str 2.htmlspecialchars 函式把一些預定義的字元轉換為 html 實體。3.strip tags 函式剝去字串中的 html xml 以及 php 的標籤。4.ch...
C 特殊字元過濾函式
using system using system.collections.generic using system.text using system.text.regularexpressions 對字串進行檢查和替換其中的特殊字元 public static string htmltotxt ...