Asp過濾指定html標籤函式

2021-05-01 13:50:38 字數 693 閱讀 6356

'過濾指定html標籤

function lfilterbadhtml(byval strhtml,byval strtags) 

dim objregexp,stroutput 

dim arrtag,i

arrtag=split(strtags,",") 

set objregexp = new regexp  

stroutput=strhtml  

objregexp.ignorecase = true 

objregexp.global = true 

for i=0 to ubound(arrtag) 

objregexp.pattern = "<"&arrtag(i)&"[/s/s]+" 

stroutput = objregexp.replace(stroutput, "")  

next 

set objregexp = nothing 

lfilterbadhtml = stroutput  

end function

'example

dim spagecont

spagecont= "...網頁正文內容..."

spagecont=lfilterbadhtml(spagecont,"script,iframe,object,table")

ASP過濾所有HTML標籤()除外

在 我們處理文字時經常要用到過濾html標籤的函式,這個函式並不難,但為了保持段落結構不被破壞需要保留 標籤,就稍微有點點的麻煩 了,如何來實現這個函式?其實這個一點也不難,簡單的用一句話來說,就是先把 換成不是html標籤的樣式,然後再去除掉所有的 html標籤,再把 換回來就行了,下面給出乙個完...

java過濾html標籤函式

public static string html2text string inputstring string regex style s style s s s s style s 定義style的正規表示式 string regex html 定義html標籤的正規表示式 p script p...

過濾HTML標籤的幾個函式

去除html標記 包括html的原始碼 已經去除後的文字 public static string nohtml string htmlstring public static string striphtml string strhtml s s r n s quot 34 amp 38 lt 6...