fn:escapeXml()函数


fn:escapeXml()函数忽略用于XML标记的字符。

语法

fn:escapeXml()函数的语法如下:

  1. java.lang.String escapeXml(java.lang.String)

实例演示

以下实例演示了这个函数的功能:

  1. <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
  2. <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
  3. <html>
  4. <head>
  5. <title>Using JSTL Functions</title>
  6. </head>
  7. <body>
  8.  
  9. <c:set var="string1" value="This is first String."/>
  10. <c:set var="string2" value="This <abc>is second String.</abc>"/>
  11.  
  12. <p>With escapeXml() Function:</p>
  13. <p>string (1) : ${fn:escapeXml(string1)}</p>
  14. <p>string (2) : ${fn:escapeXml(string2)}</p>
  15.  
  16. <p>Without escapeXml() Function:</p>
  17. <p>string (1) : ${string1}</p>
  18. <p>string (2) : ${string2}</p>
  19.  
  20. </body>
  21. </html>

运行结果如下:

  1. With escapeXml() Function:
  2. string (1) : This is first String.
  3. string (2) : This <abc>is second String.</abc>
  4. Without escapeXml() Function:
  5. string (1) : This is first String.
  6. string (2) : This is second String.