LOGO OA教程 ERP教程 模切知识交流 PMS教程 CRM教程 开发文档 其他文档  
 
网站管理员

asp去除HTML标记的三个实用函数

admin
2010年7月3日 14:30 本文热度 6098

<%

function removehtml_a(strtext)
dim npos1
dim npos2

npos1 = instr(strtext, "<")
do while npos1>0
npos2 = instr(npos1+1, strtext, ">")
if npos2>0 then
strtext = left(strtext, npos1 - 1) & mid(strtext, npos2 + 1)
else
exit do
end if
npos1 = instr(strtext, "<")
loop

removehtml_a = strtext
end function

function removehtml_b(strtext)
dim regex

set regex = new regexp

regex.pattern = "<[^>]*>"
regex.global = true

removehtml_b = regex.replace(strtext, "")
end function

function removehtml_c( strtext )
dim taglist
taglist = ";!--;!doctype;a;acronym;address;applet;area;b;base;basefont;" &_
"bgsound;big;blockquote;body;br;button;caption;center;cite;code;" &_
"col;colgroup;comment;dd;del;dfn;dir;div;dl;dt;em;embed;fieldset;" &_
"font;form;frame;frameset;head;h1;h2;h3;h4;h5;h6;hr;html;i;iframe;img;" &_
"input;ins;isindex;kbd;label;layer;lagend;li;link;listing;map;marquee;" &_
"menu;meta;nobr;noframes;noscript;object;ol;option;p;param;plaintext;" &_
"pre;q;s;samp;script;select;small;span;strike;strong;style;sub;sup;" &_
"table;tbody;td;textarea;tfoot;th;thead;title;tr;tt;u;ul;var;wbr;xmp;"

const blocktaglist = ";applet;embed;frameset;head;noframes;noscript;object;script;style;"

dim npos1
dim npos2
dim npos3
dim strresult
dim strtagname
dim bremove
dim bsearchforblock

npos1 = instr(strtext, "<")
do while npos1 > 0
npos2 = instr(npos1 + 1, strtext, ">")
if npos2 > 0 then
strtagname = mid(strtext, npos1 + 1, npos2 - npos1 - 1)
strtagname = replace(replace(strtagname, vbcr, " "), vblf, " ")

npos3 = instr(strtagname, " ")
if npos3 > 0 then
strtagname = left(strtagname, npos3 - 1)
end if

if left(strtagname, 1) = "/" then
strtagname = mid(strtagname, 2)
bsearchforblock = false
else
bsearchforblock = true
end if

if instr(1, taglist, ";" & strtagname & ";", vbtextcompare) > 0 then
bremove = true
if bsearchforblock then
if instr(1, blocktaglist, ";" & strtagname & ";", vbtextcompare) > 0 then
npos2 = len(strtext)
npos3 = instr(npos1 + 1, strtext, " if npos3 > 0 then
npos3 = instr(npos3 + 1, strtext, ">")
end if

if npos3 > 0 then
npos2 = npos3
end if
end if
end if
else
bremove = false
end if

if bremove then
strresult = strresult & left(strtext, npos1 - 1)
strtext = mid(strtext, npos2 + 1)
else
strresult = strresult & left(strtext, npos1)
strtext = mid(strtext, npos1 + 1)
end if
else
strresult = strresult & strtext
strtext = ""
end if

npos1 = instr(strtext, "<")
loop
strresult = strresult & strtext

removehtml_c = strresult
end function

%>


该文章在 2010/7/3 14:30:56 编辑过
关键字查询
相关文章
正在查询...
点晴ERP是一款针对中小制造业的专业生产管理软件系统,系统成熟度和易用性得到了国内大量中小企业的青睐。
点晴PMS码头管理系统主要针对港口码头集装箱与散货日常运作、调度、堆场、车队、财务费用、相关报表等业务管理,结合码头的业务特点,围绕调度、堆场作业而开发的。集技术的先进性、管理的有效性于一体,是物流码头及其他港口类企业的高效ERP管理信息系统。
点晴WMS仓储管理系统提供了货物产品管理,销售管理,采购管理,仓储管理,仓库管理,保质期管理,货位管理,库位管理,生产管理,WMS管理系统,标签打印,条形码,二维码管理,批号管理软件。
点晴免费OA是一款软件和通用服务都免费,不限功能、不限时间、不限用户的免费OA协同办公管理系统。
Copyright 2010-2024 ClickSun All Rights Reserved