I\'m trying to match a pattern into a string in XSLT/XPath using the matches function, as follows: <xsl:when test=\"matches(\'awesom开发者_StackOverflow中文版e\',\'awe\')\">
In my web application I need to use Saxon TransformerFactory in order to use XSLT 2.0 but I can\'t use setProperty method because I don\'t have this right on the 开发者_StackOverflow中文版web server a
How do i select all the text nodes within a specific element node using XSL? Input xml: <node1 id=\"1\">
I want to get all \"g开发者_开发问答enerateId\" values of the text nodes which are a child of a specific node whose attribute \"id\" value is known. I can i test for this condition using XSL?Use an XP
How to retrive the id attribute of the root node of a xml usin开发者_运维技巧g XSL? How to retrive the id attribute of the
I am using the below XSL 2.0 code to find the ids of the text nodes that contains the list of indices that i give as input. the code works perfectly but in terms for performance it is taking a long ti
I need to search a word and its context into an xml. For example <line>hello world, my name is farhad and i\'m having trouble with xslt</line>
I\'d like to add the XSLT 2 schema to Visual Studio 2010 to provide intellisense. I\'ve added the schema to C:\\Program Files\\Microsoft Visual Studio 10.0\\Xml\\Schemas (removing the XSLT 1 schema),
For each \"agency\" node I need to find the \"stmt\" elements that have the same key1, key2, key3 values and output just one \"stmt\" node with the \"comm\" and \"prem\" values summed together. For an
How do i select the preceding nodes of a text node starting from a specific node whose id i know instead of getting the text nodes from the root node?