문제

I'm building a large word document, and need to change the text colour of 'part' of a string, only.

I've found similar questions in a few places here, here and here, but where my problem seems to differ, is that I only wish to colour part of a string, as opposed to a whole paragraph, or an entire OpenTBS field, as in these examples.

I first tried wrapping the individual chunk of string in docx XML tags, but found php converted then to entities (&gt; etc) which clearly was no use. Currently, I've moved on to wrapping the part of the text in XML tags through a template script, which gives me a malformed XML output, I presume because I have content between the </w:r> from one substring, and the <w:r> of the next substring.

Any advice on how to do this properly? Below is the current code and output.

//Function called onmerge. I wrap the portion of string I want to change the text 
//colour of with [UNTRANSLATED] and [ENDUNTRANSLATED] manually earlier, and attempt 
//to swap them for tags at this point.
function lb($FieldName, &$CurrVal) { 
    $CurrVal= str_replace('[UNTRANSLATED]', '<w:r><w:rPr><w:color w:val="FF0000"/></w:rPr><w:t>', $CurrVal); 
    $CurrVal= str_replace('[ENDUNTRANSLATED]', '</w:t></w:r>', $CurrVal); 
}

And the output...

<w:t> 
    <w:r> 
        <w:rPr> 
            <w:color w:val="FF0000" /> 
        </w:rPr> 
        <w:t>Slaked Lime</w:t> 
    </w:r>,
    <w:r>
         <w:rPr>
             <w:color w:val="FF0000" />
         </w:rPr>
         <w:t>Air slaked Lime</w:t>
    </w:r>,
[code continues in same style...]

Word flags the error at the point where my second block, and second <w:r> tag are. Unfortunately the error is beautifully non-descript.


도움이 되었습니까?

해결책

The issue with the above code was that OpenTBS inputs strings into a pair of <w:r><w:t> tags, which need to be closed, before you insert your own. (As Sarah Kemp said in comments, <w:t> doesn't appear to be nestable.

The below is an updated, working version. xml:space="preserve" also needed to be added to preserve spacing.

//Function called onmerge. I wrap the portion of string I want to change the text 
//colour of with [UNTRANSLATED] and [ENDUNTRANSLATED] manually earlier, and attempt 
//to swap them for tags at this point.
function lb($FieldName, &$CurrVal) {
  $CurrVal= str_replace('[UNTRANSLATED]', '</w:t></w:r><w:r><w:rPr><w:color w:val="FF0000"/></w:rPr><w:t xml:space="preserve">', $CurrVal);
  $CurrVal= str_replace('[ENDUNTRANSLATED]', '</w:t></w:r><w:r><w:t xml:space="preserve">', $CurrVal);
} 

다른 팁

My only suggestion is to look at a well-formed Word document and base your code on that. I made a basic document and typed a line then changed the color of a word. Then I changed the file extension to zip from docx and looked at the XML in word/document.xml. Here is what it looks like straight from Word (with formatting applied):

<w:p w:rsidR="00BA3836" w:rsidRDefault="00420636">
    <w:r>
        <w:t xml:space="preserve">This is some text where </w:t>
    </w:r>
    <w:r w:rsidRPr="00420636">
        <w:rPr>
            <w:color w:val="FF0000"/>
        </w:rPr>
        <w:t>parts</w:t>
    </w:r>
    <w:r>
        <w:t xml:space="preserve"> are red.</w:t>
    </w:r>
</w:p>

In the document, the word 'parts' is red.

I could offer more help if you extract the XML from your .docx file like I've done and post the relevant area (with TBS tags intact - prior to merge).

It sounds like you are very close to getting this resolved. Did you play with parameter strconv=no?

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top