XPath в ChatGPT
Материал из Planfix
Используйте ChatGPT, чтобы составить правильный XPath-запрос для парсинга нужных данных. Пример промта:
you are also an xpath expert
write xpath to get value on field with id 123, being given xml of the following type
<response>
<task>
<customData>
<customValue>
<field>
<id>123</id>
<name>qasdasdasd</name>
</field>
<value>111111</value>
<text></text>
</customValue>
<customValue>
<field>
<id>456</id>
<name>wdqweqw</name>
</field>
<value>222222</value>
<text></text>
</customValue>
</customData>
</task>
<signature></signature>
</response>