プログラミング
 Computer >> コンピューター >  >> プログラミング >> プログラミング

JSPでXMLマークアップとして解釈できる文字をエスケープするにはどうすればよいですか?


fn:escapeXml() 関数は、XMLマークアップとして解釈できる文字をエスケープします。

構文

fn:escapeXml() 関数の構文は次のとおりです-

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

以下は、 fn:escapeXml()の機能を説明する例です。 関数-

<%@ taglib uri = "https://java.sun.com/jsp/jstl/core" prefix = "c" %>
<%@ taglib uri = "https://java.sun.com/jsp/jstl/functions" prefix = "fn" %>
<html>
   <head>
      <title>Using JSTL Functions</title>
   </head>
   <body>
      <c:set var = "string1" value = "This is first String."/>
      <c:set var = "string2" value = "This <abc>is second String.</abc>"/>
      <p>With escapeXml() Function:</p>
      <p>string (1) : ${fn:escapeXml(string1)}</p>
      <p>string (2) : ${fn:escapeXml(string2)}</p>
      <p>Without escapeXml() Function:</p>
      <p>string (1) : ${string1}</p>
      <p>string (2) : ${string2}</p>
   </body>
</html>

次の結果が表示されます-

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

  1. C#で文字列からXDocumentにデータを入力する方法は?

    XMLは自己記述型の言語であり、データと、それに含まれる情報を識別するためのルールを提供します。 HTMLと同様に、XMLはSGMLのサブセットであり、StandardGeneralizedMarkupLanguageです。 XDocumentクラスには、有効なXMLドキュメントに必要な情報が含まれています。これには、XML宣言、処理命令、およびコメントが含まれます。 XDocumentクラスによって提供される特定の機能が必要な場合にのみ、XDocumentオブジェクトを作成する必要があることに注意してください。多くの場合、XElementを直接操作できます。 XElementを直接操作す

  2. Pythonの文字列からANSIエスケープシーケンスを削除するにはどうすればよいですか?

    正規表現を使用して、Pythonの文字列からANSIエスケープシーケンスを削除できます。 re.sub()を使用して、エスケープシーケンスを空の文字列に置き換えるだけです。 ANSIエスケープシーケンスの削除に使用できる正規表現は次のとおりです。(\ x9B | \ x1B \ [)[0-?] * [-\ /] * [@-〜]。 たとえば、 import re def escape_ansi(line):     ansi_escape =re.compile(r'(\x9B|\x1B\[)[0-?]*[ -\/]*[@-~]')