XQuery 字符串函数 string-length()函数
XQuery 字符串函数 string-length()函数 介绍
string-length()函数是用来得到一个字符串的长度。
XQuery 字符串函数 string-length()函数 语法
string-length($string as xs:string) as xs:integer
XQuery 字符串函数 string-length()函数 参数
-
$string : 提供的字符串。
XQuery 字符串函数 string-length()函数 示例
XQuery 表达式
items.xqy:
let $bookTitle := "Learn XQuery in 24 hours"
let $size := string-length($bookTitle)
return
<result>
<size>{$size}</size>
</result>
解析程序
package com.yiidian;
import com.saxonica.xqj.SaxonXQDataSource;
import javax.xml.xquery.*;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.InputStream;
public class XQueryTester {
public static void main(String[] args){
try {
execute();
}
catch (FileNotFoundException e) {
e.printStackTrace();
}
catch (XQException e) {
e.printStackTrace();
}
}
private static void execute() throws FileNotFoundException, XQException{
InputStream inputStream = new FileInputStream(new File("items.xqy"));
XQDataSource ds = new SaxonXQDataSource();
XQConnection conn = ds.getConnection();
XQPreparedExpression exp = conn.prepareExpression(inputStream);
XQResultSequence result = exp.executeQuery();
while (result.next()) {
System.out.println(result.getItemAsString(null));
}
}
}
输出结果为:
热门文章
优秀文章