0

XSLT を使用して削除したい、さまざまなレベルで追加のノードを含む XML ドキュメントがあります。

私の直感では、(Altova などを使用して) XSD を生成し、出力に表示したくない要素を削除してから、エディター (Altova など) に XSLT を自動生成させて、古い XSD を新しいXSD。

昔は、私はこれのために XSL を手作業で書いていました...しかし、これらすべての優れたツールを使用して、本当に理由があるのでしょうか、または誰かが別の方法を提案できますか? ここ数年やってないので質問させていただきます...

私はこれを思いついたが、これは非常に単純なので、提案に感謝する:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fn="http://www.w3.org/2005/xpath-functions" >
<xsl:output method="xml" indent="yes"/>

  <xsl:template xpath-default-namespace="http://www.tempuri.org" match="@*|node()">
    <xsl:copy>
      <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
  </xsl:template>

  <xsl:template xpath-default-namespace="http://www.tempuri.org" match="SomeNode">
  </xsl:template>
  <xsl:template xpath-default-namespace="http://www.tempuri.org" match="TheNode[@type!='SomeType' and @type!='OtherType']">
  </xsl:template>

</xsl:stylesheet>

残りの 1 つの作業は、「TheNode」の欠落要素「SomeSubElement」をチェックし、欠落している場合は空の要素を挿入することです。

これを行う方法に関する提案はありますか?ありがとう。

4

1 に答える 1

3

破棄したいもの用の空のテンプレートを使用した単純な同一性変換:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:xs="http://www.w3.org/2001/XMLSchema"
  version="2.0">

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

  <xsl:template match="tagToBeRemoved"/>

</xsl:stylesheet>
于 2010-11-02T14:55:35.173 に答える