XQuery 序列函数 index-of()函数

XQuery 序列函数 index-of()函数 介绍

index-of()函数被用于跟踪所述给定序列中的项目。它返回整数以指示给定序列中项目的可用性。

XQuery 序列函数 index-of()函数 语法

index-of($seq as anyAtomicType()*, $target as anyAtomicType())

XQuery 序列函数 index-of()函数 参数

  • $seq : 提供的序列。序列可以包含 0 个或多个项目。

  • $target : 要返回其索引的项目。

XQuery 序列函数 index-of()函数 示例

XQuery 表达式

items.xqy:

let $items := (1,2,3,4,5,6)
let $indexOf := index-of($items,4)
return
   <result>   
      <indexof>{$indexOf}</indexof>
   </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));  
      }  
   }      
}  

输出结果为:

热门文章

优秀文章