我需要一种方法来实现 XPath 2.0 中的 matches() 函数与 XPath 1.0 中的函数

发布于 2024-09-05 21:36:06 字数 158 浏览 10 评论 0原文

我有以下代码:

root="//valueExpression[matches(self::*,'pattern')]/.."

但我只能使用 XPath 1.0,并且函数 matches() 出现异常。您能帮我找到一个仅使用 XPath 1.0 中的函数的解决方案吗?

I have the following piece of code:

root="//valueExpression[matches(self::*,'pattern')]/.."

But I can only use XPath 1.0 and I get an exception for the function matches(). Can you please help me with a solution using only functions from XPath 1.0 ?

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

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

发布评论

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

评论(1

一枫情书 2024-09-12 21:36:07

通常,仅使用 XPath 1.0 无法完成此操作

但是,有一组标准 XPath 1.0 函数可用于字符串处理:

  • substring()
  • substring-before()
  • substring-after()< /code>
  • translate()
  • normalize-space()
  • string-length()
  • count()

Generally, this can't be done just using XPath 1.0.

However, there is a set of standard XPath 1.0 functions that you can use for string processing:

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