ASP常用函数之XMLEncode的详细介绍

来源:爱站网时间:2022-09-30编辑:网友分享
本文给大家来详细说说看ASP常用函数之XMLEncode的详细内容,感兴趣的小伙伴可以随时来参考阅读下,具有一定的参考价值,希望爱站技术频道小编整理的资料能在工作中帮助到你。

输出RSS和XML时经常用到,和HTMLEncode还不完全一样

原理:

 

Character Converted To
" "
' '
& &
< &lt;
> &gt;

 

代码<%
Function XMLEncode(byVal sText)
    sText = Replace(sText, "&" , "&amp;")
    sText = Replace(sText, "<" , "&lt;")
    sText = Replace(sText, ">" , "&gt;")
    sText = Replace(sText, "'" , "&apos;")
    sText = Replace(sText, """", "&quot;")
    XMLEncode = sText
End Function
%>
还有个:
<%
Public Function XmlEncode(ByVal strText As String) As String
    Dim aryChars() As Variant
    aryChars = Array(38, 60, 62, 34, 61, 39)
    Dim i As Integer
    For i = 0 To UBound(aryChars)
        strText = Replace(strText, Chr(aryChars(i)), "&#" & aryChars(i) & ";")
    Next
    XmlEncode = strText
End Function
%>

不知道朋友们看完这篇ASP常用函数之XMLEncode的详细介绍文章后,对这方面的了解有没有更进一步呢!爱站技术频道小编每天都会不定时更新文章,需要的话收藏起来以备不时之需吧!

上一篇:asp编程中的debug类调试程序详解

下一篇:ASP常用函数之getpy()的详细介绍

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载