XSLT 1.0: Format JSON output using XSLT/ Remove defualt quotes in an JSON Array
问题 I have a the following JSON response, that I'm getting after a XSLT transformation. The values in the "name" array needed to be present as "ABC","XYZ" Payload <Data> <Mapping> <LocationID>001</LocationID> <GeoX>1.00</GeoX> <GeoY>2.00</GeoY> </Mapping> <Mapping> <LocationID>002</LocationID> <GeoX>56.00</GeoX> <GeoY>42.00</GeoY> <Mapping> </Data> Current Code where the Destination object is implemented. <xsl:template match="//Data"> <Destination> <Locations> <xsl:text disable-output-escaping=