我们正在尝试解码xquery中的编码字符串。 我不知道如何解码字符串。
以下是xquery。这基本上将xml转换为json,我们还应该进行解码。
declare namespace output = "http://www.w3.org/2010/xslt-xquery-serialization";
declare option jsoniq-version "0.4.42";
declare option output:method "json";
{
"Data":{
"Text" : string(/Request/EncodedText),
}
}
如何在此xquery中进行解码。