私はXML、このようなものがあります:XSLT変化値ノード
<?xml version="1.0" encoding="UTF-8"?>
<earth>
<computer>
<parts>
<cpu>AMD;fast</cpu>
<video>GF</video>
<power>slow</power>
...others
</parts>
<owner>
<name>Frank</name>
<owner>
</computer>
<earth>
私は、XSLは(XSL変換を作成します:スタイルシートのバージョン= "2.0" のxmlnsを:XSLを= "HTTP ://www.w3.org/1999/XSL/Transform ")。私の予想される結果は、cpuにサインがある場合のみ ';' - ';'がなければ、 ';'の後の値に変更する必要があります。結果は何の変化
<earth>
<computer>
<parts>
<cpu>AMD</cpu>
<video>GF</video>
<power>fast</power>
...others
</parts>
<owner>
<name>Frank</name>
<owner>
</computer>
<earth>
はこのような何かをしてみないはずですが、運:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fn="http://www.w3.org/2005/xpath-functions"
exclude-result-prefixes="fn">
<xsl:output encoding="utf-8" method="xml" indent="yes" />
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()" />
</xsl:copy>
</xsl:template>
<xsl:template match="parts">
<xsl:choose>
<!-- try test if node name equals 'power' if equals them try make logic
here, this dont work-->
<xsl:when test="name() = 'power'">
<xsl:variable name="text" select="./cpu" />
<xsl:variable name="sep" select="';'" />
<xsl:variable name="powerTable" select="tokenize($text, $sep)" />
<xsl:value-of select="$powerTable[1]" />
</xsl:when>
<!--if not 'power' copy node -->
<xsl:otherwise>
<xsl:copy>
<xsl:apply-templates select="@* | node()" />
</xsl:copy>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
* "私はXMLスタイルシートを持っています" *。どのように見えるか分かりますか?これまでに投稿されたものは* XML * – har07
私の投稿を編集すると、XMLファイルがあり、このファイルを新しいxmlファイルに変換するためにxslを作成する必要があります。 – Wait
これまでにXSLTを作成しようとしましたか?お持ちの場合は、それを共有して、どの部分が期待どおりに動作していないのか、どの部分を実装するのか分からないことを説明してください。まだ読んでいない場合は、XSLT入門チュートリアルを読んでから、自分で最初に作成してみてください。がんばろう! – har07