XQuery 中的 tail() 函数

发布于 2024-11-05 06:36:51 字数 194 浏览 2 评论 0原文

XQuery 中有没有办法执行类似 tail() 函数的操作?

我想要完成的是获取文件的内容(使用“xdmp:filesystem-file($path)”),然后仅显示最后 100 行。我似乎找不到一个好的方法来做到这一点。有什么想法吗?

谢谢。

Is there a way in XQuery to do something like a tail() function?

What I'm trying to accomplish is to get the contents of a file (using "xdmp:filesystem-file($path)") and then display only the last 100 lines. I can't seem to find a good way to do this. Any ideas?

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

辞旧 2024-11-12 06:36:51

在普通的 XQuery 中,这可以通过分成行并从序列末尾获取所需的行数,然后在必要时重新连接它们来完成,即

declare function local:tail($content as xs:string, $number as xs:integer)
{
  let $linefeed := "
"
  let $lines := tokenize($content, $linefeed)
  let $tail := $lines[position() > last() - $number]
  return string-join($tail, $linefeed)
};

In plain XQuery, this can be accomplished by splitting into lines and getting the desired number of lines from the end of the sequence, then rejoining them, if necessary, i.e.

declare function local:tail($content as xs:string, $number as xs:integer)
{
  let $linefeed := "
"
  let $lines := tokenize($content, $linefeed)
  let $tail := $lines[position() > last() - $number]
  return string-join($tail, $linefeed)
};
蓝海 2024-11-12 06:36:51

纯粹而简短的 XPath 2.0 解决方案——不仅可以在 XQuery 中使用,而且可以在 XSLT 或任何其他托管 XPath 2.0 的 PL 中使用:

for $numLines in count(tokenize(., '
'))
  return
    tokenize(., '
')[position() gt $numLines -100]

或者

for $numLines in count(tokenize(., '
'))
 return
    subsequence(tokenize(., '
'), $numLines -100 +1)

A pure and short XPath 2.0 solution -- can be used not only in XQuery but in XSLT or in any other PL hosting XPath 2.0:

for $numLines in count(tokenize(., '
'))
  return
    tokenize(., '
')[position() gt $numLines -100]

Or:

for $numLines in count(tokenize(., '
'))
 return
    subsequence(tokenize(., '
'), $numLines -100 +1)
知足的幸福 2024-11-12 06:36:51

如果您的 xdmp:file-xx 是文本文件的性质,那么您可以使用类似

let $f := 'any file system path'
return fn:tokenize(xdmp:filesystem-file($f), '[\n\r]+')[ fn:last() - 2 to fn:last()]

这里的 内容
我已经使用了换行符和回车作为我的令牌分割器。如果您需要其他东西来标记您可以。但简单的日志文件拖尾那么这个解决方案就可以正常工作。

给定的示例尾部给定文件的最后 2 行。如果您想要的不仅仅是将 fn:last()-2 更改为 fn:last() - x

if your xdmp:file-xx is a nature of text file then you could use something like

let $f := 'any file system path'
return fn:tokenize(xdmp:filesystem-file($f), '[\n\r]+')[ fn:last() - 2 to fn:last()]

here
i have used newline & carriage return as my token splitter. if you need something else to tokenize u could. but simple log file tailing then this solution works fine.

given example tails last 2 lines of a given file. if you want more than alter fn:last()-2 to fn:last() - x

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文