Is there a way to apply a xslt two xml with different tags?

1

I explain myself better, the question I have is if I can apply an XSLT to two XML that have certain tags with different names.

An example

first Xml

<Persona>
<Nombre>Sebastián</Nombre>
</Persona>

second XML

<Persona>
<PrimerNombre>Claudio</PrimerNombre>
</Persona>

The result would be after applying the XSLT

Persona : Sebastián 
Persona : Claudio
    
asked by Claudio Anticoi Ojeda 12.06.2018 в 17:50
source

0 answers