I am trying to store the following list in xml into a variable
<Locations>
<Location>A1</Location>
<Location>A2</Location>
<Location>A3</Location>
<Location>C1</Location>
<Location>C2</Location>
</Locations>
this is my xsl code
<xsl:variable name="my_locations" select="*/text()"/>
I verified that */text() contains all the string location values via visual studio debugger
but my_locations still seems to be empty
I have to use xsl stylesheet version 1.0 for my task
please advise