I have an XSLT file and there are <xsl:value-of select = "."/> Instructions in this file
<xsl:value-of select = "."/>
Can someone tell me what select = "." Means ?
select = "."
If I remember select="xpath/selector" correctly, then <xsl:value-of /> will give the value in the described xPath.
select="xpath/selector"
<xsl:value-of />
As described here . selects the current node just like . selects the current folder in the file system path.
.
"" Current node value - this value depends on which template or xslt command is processing.
Source: https://habr.com/ru/post/1497070/More articles:How not to show a space, when to hide / show the action bar? - androidHow to launch PhoneGap application with Sqlite in Ripple? - sqliteAWS DynamoDB v2: Do I need a secondary index for alternative queries? - indexingZF2 getServiceLocator () not found? - phpVisits counter without database with PHP - phpPHP - Forms for sending data from json to Google Docs - jsonAndroid - progressdialog not showing up in AsyncTask - androidView Django receives a GET request from a form that should send a POST - postThe purpose of the interface without defining a method / constant - javaBest way to connect and update properties using Entity Framework 5 - entity-frameworkAll Articles