gpt4 book ai didi

php - 与 XPath 等效的 Mysql like 子句

转载 作者:行者123 更新时间:2023-11-29 05:35:58 25 4
gpt4 key购买 nike

我需要以下 sql 查询的等价物:

选择所有标题以“V”开头后跟 3 个字符然后是空格后跟字符串的所有电影(例如范海辛)

SELECT * FROM films WHERE title LIKE ="V__ %";

我如何在像 films/film/title 这样的树中执行 xpath 1.0 表达式,xpath 1.0 因为我将使用 php 和 xslt。

谢谢

最佳答案

如果不能显示空格后的字符串可以吗?然后你可以使用:

//title[starts-with(text(), 'V') and string-length(substring-before(text(), ' '))=3]

如果空格后的字符串很重要,那么您可以使用:

//title[starts-with(text(), 'V') and string-length(substring-before(text(), ' '))=3 and string-length(substring-after(text(), ' '))>0]

来自 http://www.w3.org/TR/xpath/

关于php - 与 XPath 等效的 Mysql like 子句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10557780/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com