Получить узел на основе значения родного брата по запросу xpath
Я хочу получить все текстовые узлы, в которых популярность его узла-брата меньше 8
<collection shelf="Classics">
<movie title="The Enemy" shelf="A">
<type>War, Thriller</type>
<format>DVD</format>
<year>2001</year>
<rating>PG</rating>
<popularity>10</popularity>
<description>Talk about a war</description>
</movie>
<movie title="Transformers" shelf="B">
<type>Science Fiction</type>
<format>DVD</format>
<year>1980</year>
<rating>R</rating>
<popularity>7</popularity>
<description>Science Fiction</description>
</movie>
<movie title="Trigun" shelf="B">
<type>Action</type>
<format>DVD</format>
<episodes>4</episodes>
<rating>PG</rating>
<popularity>10</popularity>
<description>Quite a bit of action!</description>
</movie>
<movie title="Ishtar" shelf="A">
<type>Comedy</type>
<format>VHS</format>
<rating>PG</rating>
<popularity>2</popularity>
<description>Boring</description>
</movie>
</collection>
пока я использую запрос
/collection/movie[popularity[text() != '8' and text()!='9' and text()!=10]]/format/text()
что дает мне отличные результаты, но выглядит не очень впечатляюще, когда я использую оператор <в запросе xpath, это дает неверное выражение xpath
/collection/movie[popularity[text() < 8]]/format/text()
как использовать <оператор для получения желаемых результатов
Любая помощь будет оценена
1 ответ
Решение
Вы можете попробовать кастинг через number()
:
/collection/movie[popularity[number(text()) < 8]]/format/text()