asp html转成html编码程序_ASP教程-查字典教程网
asp html转成html编码程序
asp html转成html编码程序
发布时间:2015-06-05 来源:查字典编辑
摘要:functionhtmlencode2(str)dimresultdimlifisNULL(str)thenhtmlencode2=""ex...

function htmlencode2(str)
dim result
dim l
if isNULL(str) then
htmlencode2=""
exit function
End if
l=len(str)
result=""
dim i
for i = 1 to l
select case mid(str,i,1)
case "<"
result=result+"<"
case ">"
result=result+">"
case chr(34)
result=result+"""
case "&"
result=result+"&"
case chr(32)
result=result+" "
if i+1<=l and i-1>0 then
if mid(str,i+1,1)=chr(32) or mid(str,i+1,1)=chr(9) or mid(str,i-1,1)=chr(32) or mid(str,i-1,1)=chr(9) then
result=result+" "
else
result=result+" "
End if
else
result=result+" "
End if
case chr(9)
result=result+" "
case else
result=result+mid(str,i,1)
End select
next
htmlencode2=result
End function
}

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新ASP教程学习
    热门ASP教程学习
    编程开发子分类