常用編緝html方法

2021-04-29 20:14:18 字數 1017 閱讀 4173

public class subhtmlstring

)|/s)*?(///s*)?>",

@"([/r/n])[/s]+",

@"&(quot|#34);",

@"&(amp|#38);",

@"&(lt|#60);",

@"&(gt|#62);",

@"&(nbsp|#160);",

@"&(iexcl|#161);",

@"&(cent|#162);",

@"&(pound|#163);",

@"&(copy|#169);",

@"&#(/d+);",

@"-->",

@""",

"","",

"/"",

"&",

"<",

">",

" ",

"/xa1",//chr(161),

"/xa2",//chr(162),

"/xa3",//chr(163),

"/xa9",//chr(169),

"","/r/n",

""};

string newreg = aryreg[0];

string stroutput = strhtml;

for (int i = 0; i < aryreg.length; i++)

stroutput.replace("<", "");

stroutput.replace(">", "");

stroutput.replace("/r/n", "");

return stroutput;

}//寫乙個靜態方法

#region 移除html標籤

///

/// 移除html標籤

///

/// htmlstr

public static string parsetags(string htmlstr)

");return str;

}#endregion

}

windows下gvim 寫html 中文編碼

vim 下配置檔案vimrc 有三個與編碼有關的引數 encoding fileencoding,fileencodings encoding 的作用是在fileencoding為空的情況下,新建檔案的預設編碼,在windows 環境下預設的cp936,和終端環境編碼相同,修改容易造成終端環境亂碼 ...

Python網編 join方法

前言 我們知道父程序要負責 子程序占用的系統資源 就是父要給子收屍 so父程序要等子程序結束之後收了屍才能結束,如果父程序先結束,子程序的資源就沒法被 就會一直占用系統資源,就成了殭屍程序了 我們的python中如果父程序即使執行完了或者報錯了也要等待子程序結束收了屍再結束 舉個例子 我們要給500...

簡記html中常用的文件載入方法

最近對於文件載入方法有了新的理解,因此整理成一片簡記,方便以後進行查閱。先來一段html,作為我們研究的基礎吧。這就夠了。一火狐的這篇文章提到了如何使用pagehide與pageshow方法,但是mdn中沒有關於pagehide與pageshow的詳細說明,所以大家僅作了解即可 二是在討論pageh...