J'ai la chaîne suivante
Code : Tout sélectionner
<table:table-row table:style-name="Tableau3.2">
<table:table-cell table:style-name="Tableau3.A2" office:value-type="string">
<text:p text:style-name="P32">AB1</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tableau3.A2" office:value-type="string">
<text:p text:style-name="P21">AB2</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tableau3.A2" office:value-type="string">
<text:p text:style-name="P21">AB3</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tableau3.A2" office:value-type="string">
<text:p text:style-name="P21">AB4</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tableau3.A2" office:value-type="string">
<text:p text:style-name="P21">AB5</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tableau3.F2" office:value-type="string">
<text:p text:style-name="P21">AB6</text:p>
</table:table-cell>
</table:table-row>J'aimerai soustraire la chaîne suivante :
Code : Tout sélectionner
<text:p text:style-name="P21">AB4</text:p>Quand je fais
Code : Tout sélectionner
$reg1 = "#<text:p text:style-name=(.*)>AB4</text:p>#";
preg_match_all($reg1, $this->xml, $matches);
Code : Tout sélectionner
<text:p text:style-name="P21">AB4</text:p>Merci d'avance pour votre aide.