XSLT में है
<xsl:value-of select="expression"/>
एक तत्व का मूल्य पाने के लिए, लेकिन क्या तत्व के टैग-नाम का चयन करना है?
इस तरह की स्थिति में:
<person>
<!-- required stuff -->
<name>Robert</name>
<!-- optional stuff, free form for future extension.
Using XMLSchema's xsd:any -->
<profession>programmer</profession>
<hobby>photography</hobby>
</person>
<xsl:for-each select="person">
<xsl:tag-of select="."/> : <xsl:value-of select="."/>
</xsl:for-each>
इस तरह उत्पादन प्राप्त करने के लिए:
name : Robert profession : programmer hobby : photography
बेशक उपरोक्त XSLT संकलन नहीं करेगा क्योंकि
<xsl:tag-of select="expression"/>
मौजूद नहीं है। लेकिन यह कैसे किया जा सकता है?