0

これは非常に簡単なことのように思えますが、XPath を使用して次の形式でノードを選択する方法がわかりません。

<w:p>
            <w:pPr />
            <w:customXml w:uri="DxDitaOXmlPub" w:element="msgnum">
              <w:r>
                <w:rPr>
                  <w:rStyle w:val="Dxmsgnum" />
                </w:rPr>
                <w:t>Consult your compliance officer.</w:t>
              </w:r>
            </w:customXml>
          </w:p>

次のスタイルシートでさまざまなバリエーションを試しました。

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" 
xmlns:pic="http://schemas.openxmlformats.org/drawingml/2006/picture" 
xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" 
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
xmlns:o="urn:schemas-microsoft-com:office:office" 
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" 
xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" 
xmlns:v="urn:schemas-microsoft-com:vml" 
xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" 
xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" 
xmlns:w10="urn:schemas-microsoft-com:office:word" 
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" 
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" 
xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" 
xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" 
xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" 
xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape">

<!-- Identity Transform -->

<xsl:template match="/ | @* | node()" name="identity">
    <xsl:copy>
        <xsl:apply-templates select="@* | node() "/>
    </xsl:copy>
</xsl:template>

<xsl:template match="w:p[descendant::w:rPr/w:rStyle/@w:val='msgnum']">

    <w:p>
        <w:pPr>
            <w:pStyle w:val="ActionRequired" />
        </w:pPr>
        <w:customXml w:uri="DxDitaOXmlPub" w:element="Dxmsgnum">
            <w:r>
                <w:rPr>
                    <w:rStyle w:val="Dxmsgnum" />
                </w:rPr>
                <w:t>
                    <xsl:value-of select="descendant::w:t"/>
                </w:t>
            </w:r>
        </w:customXml>
    </w:p>

</xsl:template>

</xsl:stylesheet>

望ましい結果は、w:pPr空でない child を含むように要素を変更するだけw:pStyleです。

 <w:p>
            <w:pPr>
                <w:pStyle w:val="ActionRequired" />
            </w:pPr>
            <w:customXml w:uri="DxDitaOXmlPub" w:element="Dxmsgnum">
                <w:r>
                    <w:rPr>
                        <w:rStyle w:val="Dxmsgnum" />
                    </w:rPr>
                    <w:t>
                        Consult your compliance officer.
                    </w:t>
                </w:r>
            </w:customXml>
        </w:p>

スタイルシートがそのままの状態で機能しない理由はわかりませんが、私は OpenXML 形式にあまり慣れていないので、私が気付いていないファンキーなものがあるのでしょうか?

編集:次のようにマッチングも試みました@w:element:

<xsl:template match="w:p[child::w:customXml/@w:element='msgnum']">

        <w:p>
            <w:pPr>
                <w:pStyle w:val="ActionRequired" />
            </w:pPr>
            <w:customXml w:uri="DxDitaOXmlPub" w:element="msgnum">
                <w:r>
                    <w:rPr>
                        <w:rStyle w:val="Dxmsgnum" />
                    </w:rPr>
                    <w:t>
                        <xsl:value-of select="descendant::w:t"/>OOGA BOOGA!
                    </w:t>
                </w:r>
            </w:customXml>
        </w:p>

</xsl:template>
4

1 に答える 1