Explain how to remove a particular attribute from XML?

Submitted by: Muhammad
Process of removing an attribute is similar to removing elements from XML document, as discussed in above XSLT interview question. Along with Identity template, define another template to match with that particular attribute as shown below.

<xsl:template match="@product_synonym"/>
Submitted by: Muhammad

Read Online XSLT Job Interview Questions And Answers