非常實用(yòng)的(de)一個(gè)函數,這(zhè)裏主要用(yòng)到了(le)正則的(de)匹配模式大(dà)家可(kě)以看腳本之家網站的(de)正則專題
'去掉html中的(de)table代碼 Function OutTable(str) dim a,re set re=new RegExp re.pattern="<(?!img|br|p|div).*?>" re.global=true a=str OutTable=re.replace(a,"") End Function