<%
public function html2text(byval strhtml)
dim objregexp, match, matches
set objregexp = new regexp
objregexp.ignorecase = true
objregexp.global = true
'取閉合的<>
objregexp.pattern = "<.+?>"
'進行匹配
set matches = objregexp.execute(strhtml)
' 遍歷匹配集合,並替換掉匹配的專案
for each match in matches
strhtml=replace(strhtml,match.value,"")
next
strhtml = replace(strhtml,chr(34),"")
strhtml = replace(strhtml,chr(10),"")
strhtml = replace(strhtml,chr(13),"")
strhtml = replace(strhtml,vbcrlf,"")
html2text=strhtml
set objregexp = nothing
end function
dim pic
pic=pic+1%>
" value='<%=rs("title")%>'>
" value='<%=rs("articleid")%>'>
" value='<%=rs("defaultpicurl")%>'>
">
android中html和text互轉
html轉textmedittext edittext findviewbyid r.id et medittext.settext html.fromhtml content mtv one textview findviewbyid r.id tv one mtv one.settext htm...
jquery中html與text的區別
通常在用jquery寫ajax時,都會用到html 這個方法,而不用text 這個方法,他們之間有什麼區別呢?首先,html屬性中有兩個方法,乙個有參,乙個無參。1.無參html 取得第乙個匹配元素的html內容。這個函式不能用於xml文件。但可以用於xhtml文件,返回的是乙個string 例子 ...
JQuery中html 與text 方法的區別
通常在用jquery寫ajax時,都會用到html 這個方法,而不用text 這個方法,他們之間有什麼區別呢?html屬性中有兩個方法,乙個 有參,乙個無參。例子 html頁面 hello jquery div html 結果 hello 例子 html頁面 jquery div html nice...