Task #2916

Mis à jour par Matthieu Decorde il y a plus de 4 ans

(old: some non visible characters are transferred in the CQP structural unit properties values from the table cells)

when a CQP property value contains double space " " CQP fails in some case. eg for the word property value t="A B" :

test.xml:
<pre>
<TEI>
<teiHeader></teiHeader>
<text>
<w>A</w>
<w>A B</w>
<w>C</w>
</text>
</TEI>
</pre>

<pre>
* [t="A B"] FAIL
* [t="A .+"] SUCCESS
</pre>

h3. Solution A

normalize all CQP property values:
* @" +"@ -> @" "@

The normalization should be done in:
* XML-TXM files ?
* CQP files ?

Retour