我有一個要求,其中i將被獲取XML如下:XSLT到concate不同值重複元素
<Input>
<Record>
<EMPID>FirstEmployee</EMPID>
</Record>
<Record>
<EMPID>SecondEmployee</EMPID>
</Record>
<Record>
<EMPID>FirstEmployee</EMPID>
</Record>
<Record>
<EMPID>SecondEmployee</EMPID>
</Record>
</Input>
我對XML預期輸出施加變換後以上是:
<Output>
<Record>
<EMPID>FirstEmployee|1</EMPID>
</Record>
<Record>
<EMPID>SecondEmployee|1</EMPID>
</Record>
<Record>
<EMPID>FirstEmployee|2</EMPID>
</Record>
<Record>
<EMPID>SecondEmployee|2</EMPID>
</Record>
</Output>
當以這種方式使用的解決方案之一
<?xml version="1.0" encoding="UTF-8" ?>
<?oracle-xsl-mapper
<!-- SPECIFICATION OF MAP SOURCES AND TARGETS, DO NOT MODIFY. -->
<mapSources>
<source type="WSDL">
<schema location="../BPELProcess1.wsdl"/>
<rootElement name="Input" namespace="http://xmlns.oracle.com/UMSAdapterVerify/XSLTCheck/BPELProcess1"/>
</source>
</mapSources>
<mapTargets>
<target type="WSDL">
<schema location="../BPELProcess1.wsdl"/>
<rootElement name="Output" namespace="http://xmlns.oracle.com/UMSAdapterVerify/XSLTCheck/BPELProcess1"/>
</target>
</mapTargets>
<!-- GENERATED BY ORACLE XSL MAPPER 11.1.1.7.8(build 150622.2350.0222) AT [FRI DEC 16 15:55:29 IST 2016]. -->
?>
<xsl:stylesheet version="1.0"
xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
xmlns:xp20="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.Xpath20"
xmlns:mhdr="http://www.oracle.com/XSL/Transform/java/oracle.tip.mediator.service.common.functions.MediatorExtnFunction"
xmlns:bpel="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
xmlns:client="http://xmlns.oracle.com/UMSAdapterVerify/XSLTCheck/BPELProcess1"
xmlns:oraext="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:dvm="http://www.oracle.com/XSL/Transform/java/oracle.tip.dvm.LookupValue"
xmlns:hwf="http://xmlns.oracle.com/bpel/workflow/xpath"
xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:med="http://schemas.oracle.com/mediator/xpath"
xmlns:ids="http://xmlns.oracle.com/bpel/services/IdentityService/xpath"
xmlns:bpm="http://xmlns.oracle.com/bpmn20/extensions"
xmlns:xdk="http://schemas.oracle.com/bpel/extension/xpath/function/xdk"
xmlns:xref="http://www.oracle.com/XSL/Transform/java/oracle.tip.xref.xpath.XRefXPathFunctions"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:ora="http://schemas.oracle.com/xpath/extension"
xmlns:socket="http://www.oracle.com/XSL/Transform/java/oracle.tip.adapter.socket.ProtocolTranslator"
xmlns:ldap="http://schemas.oracle.com/xpath/extension/ldap"
exclude-result-prefixes="xsi xsl client plnk xsd wsdl bpws xp20 mhdr bpel oraext dvm hwf med ids bpm xdk xref ora socket ldap">
<xsl:template match="/">
<client:Output>
<xsl:for-each select="/client:Input/client:Record">
<client:Record>
<xsl:variable name="current" select="."/>
<xsl:variable name="pos">
<xsl:number level="any" count="client:EMPID[.=$current]"/>
</xsl:variable>
<client:EMPID>
<xsl:value-of select='concat(.,"|",$pos)'/>
</client:EMPID>
</client:Record>
</xsl:for-each>
</client:Output>
</xsl:template>
</xsl:stylesheet>
輸出是
<Output>
<client:Record>
<client:EMPID> Srinivas |0</client:EMPID>
</client:Record>
<client:Record>
<client:EMPID> kalyan |0</client:EMPID>
</client:Record>
<client:Record>
<client:EMPID> Srinivas |0</client:EMPID>
</client:Record>
<client:Record>
<client:EMPID> kalyan |0</client:EMPID>
</client:Record>
</Output>
這個
我的代碼中沒有38行(或42或44)。 –
我已更新問題。請查看此 –