hey everyone my xml has some node with same attribute and i would like to pull them using some xpath hope you can help so it basically looks like this
<myxml>
<something Type="AT_SAS_6"/>
<something Type="AT_SAS_50"/>
<something Type="AT_SAS_200"/>
</myxml>
i know that if it was on the name i could do something like
<xsl:template match=*[starts-with(name(), 'AT_SAS')]">
is there anyway to do the same to attribute value?