S
Stephane Roux (HAbeTT)
Hello,
I'm an XML newbie, trying things through perl. My question must be
simple and is related to XPath.
I've got
<?xml version="1.0" encoding="iso-8859-1"?>
<base>
<arret ref="10400390" public="yes" ville="Paris">
<objet>Droits d'auteur, oeuvre cinématographique, contrat de
cession</objet>
</arret>
<arret ref="37484740" public="yes" ville="Paris">
<objet>Droit des marques, commercialisation de denrées sous une
marque, faute contractuelle, accord de coexistence de marques,
contrefaçon, concurrence déloyale</objet>
</arret>
<arret ref="38748168" public="no" ville="Paris">
<objet>Rupture abusive de contrat de distribution</objet>
</arret>
</base>
I want an XPath to catch the <arret> when objet contains the word
"marques".
I've tried /base/arret/objet[contains(text(),marques)=true] but i'm
too much an XML dummy for this to work.
Can anyone help me ?
I'm an XML newbie, trying things through perl. My question must be
simple and is related to XPath.
I've got
<?xml version="1.0" encoding="iso-8859-1"?>
<base>
<arret ref="10400390" public="yes" ville="Paris">
<objet>Droits d'auteur, oeuvre cinématographique, contrat de
cession</objet>
</arret>
<arret ref="37484740" public="yes" ville="Paris">
<objet>Droit des marques, commercialisation de denrées sous une
marque, faute contractuelle, accord de coexistence de marques,
contrefaçon, concurrence déloyale</objet>
</arret>
<arret ref="38748168" public="no" ville="Paris">
<objet>Rupture abusive de contrat de distribution</objet>
</arret>
</base>
I want an XPath to catch the <arret> when objet contains the word
"marques".
I've tried /base/arret/objet[contains(text(),marques)=true] but i'm
too much an XML dummy for this to work.
Can anyone help me ?