我有一个输入标记名称属性,其中包含许多以分号分隔的值(如键值对)。我需要找到特定的字符串并将值(在=之后)转换为特定的输出节点
例如,在下面的input.xml中,我想把mail.debug = false并赋值为" false"进入输出xml调试节点。
Input.xml中
<mail-session>
<name>MailSession-1</name>
<target>AdminServer</target>
<jndi-name>MailNotification2</jndi-name>
<properties>
mail.debug=false;mail.smtp.user=weblogic;mail.from=master@mydom.com;
</properties>
</mail-session>
我的output.xml应该是这样的
<?xml version="1.0" encoding="UTF-8"?>
<mail-session jndi-name="java:jboss/mail/mailservice" name="MailSession-1" debug="false" from="master@mydom.com">
<smtp-server outbound-socket-binding-ref="" tls="" ssl="">
<login name="weblogic" password=""/>
</smtp-server>
</mail-session><subsystem>
</subsystem>
答案 0 :(得分:1)
对于XSLT 2.0
您应该查看Tokenize函数(http://www.xsltfunctions.com/xsl/fn_tokenize.html)
tokenize('mail.debug=false;mail.smtp.user=weblogic;mail.from=master@mydom.com;', '[;\s]+')
较旧的XSLT
如果您使用的是旧版XSLT,请创建自己的函数:
<xsl:template name="tokenize-string">
<xsl:param name="list" />
<xsl:variable name="newlist" select="concat(normalize-space($list), ' ')" />
<xsl:variable name="first" select="substring-before($newlist, ' ')" />
<xsl:variable name="remaining" select="substring-after($newlist, ' ')" />
<id>
<xsl:value-of select="$first" />
</id>
<xsl:if test="$remaining">
<xsl:call-template name="tokenize-string">
<xsl:with-param name="list" select="$remaining" />
</xsl:call-template>
</xsl:if>
</xsl:template>
答案 1 :(得分:0)
要根据以下XSL中的更改和要求执行更清晰,更动态的操作:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template name="get_value_from_str">
<xsl:param name="in.str"/>
<xsl:param name="in.val"/>
<xsl:param name="in.sep"/>
<xsl:choose>
<xsl:when test="string-length($in.val) >0 and string-length($in.sep) >0">
<xsl:value-of select="substring-before(substring-after(normalize-space($in.str), concat($in.val, '=')), $in.sep)"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="normalize-space($in.str)"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:attribute-set name="mail-session-attr">
<xsl:attribute name="jndi-name">
<xsl:call-template name="get_value_from_str">
<xsl:with-param name="in.str" select="'java:jboss/mail/mailservice'" />
</xsl:call-template>
</xsl:attribute>
<xsl:attribute name="name">
<xsl:call-template name="get_value_from_str">
<xsl:with-param name="in.str" select="/mail-session/name" />
</xsl:call-template>
</xsl:attribute>
<xsl:attribute name="debug">
<xsl:call-template name="get_value_from_str">
<xsl:with-param name="in.str" select="/mail-session/properties" />
<xsl:with-param name="in.val" select="'mail.debug'" />
<xsl:with-param name="in.sep" select="';'" />
</xsl:call-template>
</xsl:attribute>
<xsl:attribute name="from">
<xsl:call-template name="get_value_from_str">
<xsl:with-param name="in.str" select="/mail-session/properties" />
<xsl:with-param name="in.val" select="'mail.from'" />
<xsl:with-param name="in.sep" select="';'" />
</xsl:call-template>
</xsl:attribute>
</xsl:attribute-set>
<xsl:attribute-set name="smtp-server-attr">
<xsl:attribute name="outbound-socket-binding-ref" select="''"/>
<xsl:attribute name="tls" select="''"/>
<xsl:attribute name="ssl" select="''"/>
</xsl:attribute-set>
<xsl:attribute-set name="login-attr">
<xsl:attribute name="name">
<xsl:call-template name="get_value_from_str">
<xsl:with-param name="in.str" select="/mail-session/properties" />
<xsl:with-param name="in.val" select="'mail.smtp.user'" />
<xsl:with-param name="in.sep" select="';'" />
</xsl:call-template>
</xsl:attribute>
<xsl:attribute name="password" select="''"/>
</xsl:attribute-set>
<xsl:template match="/">
<xsl:element name="mail-session" use-attribute-sets="mail-session-attr">
<xsl:element name="smtp-server" use-attribute-sets="smtp-server-attr">
<xsl:element name="login" use-attribute-sets="login-attr"/>
</xsl:element>
</xsl:element>
<xsl:element name="subsystem" />
</xsl:template>
</xsl:stylesheet>
然后结果将如上所述:
<?xml version="1.0" encoding="UTF-8"?>
<mail-session jndi-name="java:jboss/mail/mailservice" name="MailSession-1" debug="false" from="master@mydom.com">
<smtp-server outbound-socket-binding-ref="" tls="" ssl="">
<login name="weblogic" password=""/>
</smtp-server>
</mail-session>
<subsystem/>
希望它对你有用。