Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
xpath 2.0 で一連の要素を作成したい
次のようなことができます:
('a','b','c')
文字列のシーケンスを作成します。
私は次のようなことをしたい:
(<a>1</a>,<a>2</a>,<a>3</a>)
一連の要素を作成します。
これは可能ですか?はい、XSLT を使用してそれを行う方法を知っています。
前もって感謝します。
xml-parse()xpath 3.0 では、次のように関数を使用できます。
xml-parse()
parse-xml("&lt;a&gt;1&lt;/a&gt;,&lt;a&gt;2&lt;/a&gt;,&lt;a&gt;3&lt;/a&gt;")