xml - What does node()|@* mean XSLT? -


i have seen being used in contect:

<xsl:template match="node()|@*"> <xsl:copy>   <xsl:apply-templates select="node()|@*"/> </xsl:copy> 

can explain "node()|@*" means?

this called identity transform. node()|@* matching child nodes (node() text,element,processing instructions,comments) , attributes (@*) of current context.


Comments

Popular posts from this blog

jasper reports - Fixed header in Excel using JasperReports -

media player - Android: mediaplayer went away with unhandled events -

python - ('The SQL contains 0 parameter markers, but 50 parameters were supplied', 'HY000') or TypeError: 'tuple' object is not callable -