XQuery 中的 tail() 函数
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在普通的 XQuery 中,这可以通过分成行并从序列末尾获取所需的行数,然后在必要时重新连接它们来完成,即
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.
纯粹而简短的 XPath 2.0 解决方案——不仅可以在 XQuery 中使用,而且可以在 XSLT 或任何其他托管 XPath 2.0 的 PL 中使用:
或者:
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:
Or:
如果您的 xdmp:file-xx 是文本文件的性质,那么您可以使用类似
这里的 内容
我已经使用了换行符和回车作为我的令牌分割器。如果您需要其他东西来标记您可以。但简单的日志文件拖尾那么这个解决方案就可以正常工作。
给定的示例尾部给定文件的最后 2 行。如果您想要的不仅仅是将 fn:last()-2 更改为 fn:last() - x
if your xdmp:file-xx is a nature of text file then you could use something like
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