xslt - template match using xpath query -
My XML has some nodes with the same feature and I would like to draw them using some xpath hope, This type of help can be seen in the form
& lt; Myxml & gt; & Lt; Some types = "AT_SAS_6" /> & Lt; Some types = "AT_SAS_50" /> & Lt; Some types = "AT_SAS_200" /> & Lt; / Myxml & gt;
I know that if it was on the name then I can do something like this
Is there any value to do the same?
I think the XPATH you are looking for is ...
myxml / something [begin-with (@type, "AT_")]
Comments
Post a Comment