Нужно разбить текст узла XML на подузлы, используя XSLT 1.0 - PullRequest
0 голосов
/ 05 мая 2019

Я использую процессор XSLT от Microsoft для обработки блока XML. Мне нужно разбить на несколько подузлов, используя XSLT 1.0.

Ввод очень регулярный и имеет вид "###, ##: ##> пользовательский текст" Я думаю, что должен быть в состоянии использовать это начальное число и время в качестве некоторого типа маркера / разделителя.

Примером может быть:

<xmldocument>
    <Notes>422, 10:06> Test Note 1 422, 10:03> Test Note 2 </Notes>
</xmldocument>

В этом случае есть 2 примечания:

  1. 422, 10:06> Тестовое примечание 1
  2. 422, 10:03> Контрольная записка 2

Ведущий номер может и будет меняться. Таким образом, он не может быть использован в качестве разделителя. Я ДУМАЮ можно использовать запятую и больше, чем для нахождения сообщения.

Желаемый вывод:

<xmldocument>
    <Notes>
        <Note>
            <NoteTime>10:06</NoteTime>
            <NoteText>Test Note 1 (422)</NoteText>
        </Note>
        <Note>
            <NoteTime>10:03</NoteTime>
            <NoteText>Test Note 2 (422)</NoteText>
        </Note>
     </Notes>
</xmldocument>

Пример с одной заметкой:

<xmldocument>
    <Notes>999, 10:06> Test Note 1</Notes>
</xmldocument>

даст:

<xmldocument>
    <Notes>
        <Note>
            <NoteTime>10:06</NoteTime>
            <NoteText>Test Note 1 (999)</NoteText>
        </Note>
     </Notes>
</xmldocument>

И пример с 3 примечаниями:

<xmldocument>
    <Notes>999, 10:06> Test Note 1 123, 10:08> Test Note 2 456, 10:10> Test Note 3</Notes>
</xmldocument>

даст:

<xmldocument>
    <Notes>
        <Note>
            <NoteTime>10:06</NoteTime>
            <NoteText>Test Note 1 (999)</NoteText>
        </Note>
        <Note>
            <NoteTime>10:08</NoteTime>
            <NoteText>Test Note 2 (123)</NoteText>
        </Note>
        <Note>
            <NoteTime>10:10</NoteTime>
            <NoteText>Test Note 2 (456)</NoteText>
        </Note>
     </Notes>
</xmldocument>

Полагаю, я мог бы сделать это с помощью чего-то вроде this , но мне кажется, что мне не нужно было добавлять сложность этого уровня, чтобы сделать это.

1 Ответ

1 голос
/ 05 мая 2019

--- Отредактировано после уточнения структуры ввода ---

XSLT 1.0

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>

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

<xsl:template match="Notes">
    <xsl:copy>
        <xsl:call-template name="split-notes">
            <xsl:with-param name="text" select="."/>
        </xsl:call-template>
    </xsl:copy>
</xsl:template>

<xsl:template name="split-notes">
    <xsl:param name="text"/>
    <xsl:variable name="num" select="substring-before($text, ', ')" />
    <xsl:variable name="rest" select="substring-after($text, ', ')" />
    <xsl:variable name="more" select="contains($rest, ', ')" />
    <xsl:variable name="note">
        <xsl:choose>
            <xsl:when test="$more">
                <xsl:call-template name="find-end">
                    <xsl:with-param name="text" select="substring-before($rest, ', ')"/>
                </xsl:call-template>        
            </xsl:when>
            <xsl:otherwise>
                <xsl:value-of select="$rest"/>    
            </xsl:otherwise>
        </xsl:choose>
    </xsl:variable>
    <Note>
        <NoteTime>
            <xsl:value-of select="substring-before($note, '> ')"/>
        </NoteTime>
        <NoteText>
            <xsl:value-of select="substring-after($note, '> ')"/>  
            <xsl:text> (</xsl:text>
            <xsl:value-of select="$num"/>    
            <xsl:text>)</xsl:text>                                  
        </NoteText>
    </Note>
    <xsl:if test="$more">
        <!-- recursive call -->
        <xsl:call-template name="split-notes">
            <xsl:with-param name="text" select="substring-after($text, $note)"/>
        </xsl:call-template>
    </xsl:if>
</xsl:template>

<xsl:template name="find-end">
    <xsl:param name="text"/>
    <xsl:variable name="last-char" select="substring($text, string-length($text))"/>
    <xsl:choose>
        <xsl:when test="translate($last-char, '123456789', '000000000') = '0'">
            <!-- recursive call -->
            <xsl:call-template name="find-end">
                <xsl:with-param name="text" select="substring($text, 1, string-length($text) - 1)"/>
            </xsl:call-template>            
        </xsl:when>
        <xsl:otherwise>
            <xsl:value-of select="$text"/>    
        </xsl:otherwise>
    </xsl:choose>
</xsl:template>

</xsl:stylesheet>

Когда это применяется к следующему входу:

XML

<xmldocument>
    <Notes>999, 10:06> Test Note 1 123, 10:08> Test Note 2 456, 10:10> Test Note 3</Notes>
</xmldocument>

результат будет:

Результат

<?xml version="1.0" encoding="UTF-8"?>
<xmldocument>
   <Notes>
      <Note>
         <NoteTime>10:06</NoteTime>
         <NoteText>Test Note 1  (999)</NoteText>
      </Note>
      <Note>
         <NoteTime>10:08</NoteTime>
         <NoteText>Test Note 2  (123)</NoteText>
      </Note>
      <Note>
         <NoteTime>10:10</NoteTime>
         <NoteText>Test Note 3 (456)</NoteText>
      </Note>
   </Notes>
</xmldocument>

Демоверсия : https://xsltfiddle.liberty -development.net / ej9EGcB

...