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.
「&」や「?」などの特殊文字をトークン化する方法 xqueryで。これらの特殊文字をトークン化しようとしているため、これを行うことができません。この問題を解決するように提案できますか?
XMLで行うように、アンパサンドをエスケープする必要があります。
tokenize($string, "&")
または、Unicodeコードポイントを使用することもできます。
tokenize($string, codepoints-to-string(38))