+1 vote
in XML by
To match the specific XML elements child like of parent element is the syntax will be

A. <xsl:template match=”PLANET_NAME”>

B.<xsl:template match=”PLANET/NAME”>

C. <xsl:template match=”/NAME”>

D. <xsl:template match=”//”>

1 Answer

0 votes
by
<xsl:template match=”PLANET/NAME”>
...