Here is my xslt input:-
{
"array1": [
{
"id": "banglore",
"mappingData": [
{
"name": "v1"
},
{
"name": "v2",
"Data": [
{
"idFromIndia": "0001"
}
]
}
]
}
]
}
Here I'm looking select <xsl:value-of select="concat(?idFromIndia,'|')"/>
I'm parsing input json using parse-json method;
<xsl:variable name="input-as-map" select="parse-json($input)" as="map(*)"/>
$input-as-map?array1*mappingData
I was trying to use wildcard method for traversing and i,e not working for me.
any suggestions would be helpful.......