In WordprocessingML (the format MS Word documents saves in), is there anyway to search through the text easily?
The main problem I run into is that WordprocessingML format break down each paragraph into "runs", for example:
To store the sentence "Module 1: Some Section Title", WordprocessingML specifies the XML markup to be:
<w:p w:rsidR="00F9529C" w:rsidRDefault="00F9529C" w:rsidP="00F9529C">
<w:pPr>
<w:pStyle w:val="Heading1_5019"/>
</w:pPr>
<w:bookmarkStart w:id="0" w:name="_Toc247333659"/>
<w:r>
<w:t>M</w:t>
</w:r>
<w:r w:rsidRPr="007D2739">
<w:t xml:space="preserve">odule 1: </w:t>
</w:r>
<w:r>
<w:t>Some Section Title</w:t>
</w:r>
<w:bookmarkEnd w:id="0"/>
</w:p>
As you can see, the sentence was broken into "M", "odule 1:", "Some Section Title". This arrangement make it impossible to search for the sentence as a whole. Is there anyway to get around this?
To clarify, I am trying to do this in PHP using DomDocument.