XSLT is a transformation language for XML designed to transform structured documents into other formats (such as XML, HTML, and plain text). Questions should use the xslt-1.0, xslt-2.0, or xslt-3.0 tag as appropriate.

learn more… | top users | synonyms (5)

0
votes
1answer
15 views

XSL greater than and mod

I need to pull values out when at the following numbers (in a pipe delimited .txt file): 221 262 303 344 385 to infinity... The pattern is 221 + 41(x), therefore the logic for the when needs to be ...
0
votes
1answer
28 views

How to extend a Muenchian XML grouping?

I have this XML: <events> <event name="Christmas" attendees="1"/> <event name="Halloween" attendees="3"/> <event name="Easter" attendees="2"/> <event name="Easter" ...
0
votes
1answer
25 views

Carriage returns in XSLT for Excel

I want to add carriage returns to an XSLT file that generates an Excel file. My situation is that I have a really long string inside an Excel cell. I want the text to wrap around while remaining ...
0
votes
1answer
21 views

Make XSL refer to external text file?

I'm trying to reuse a text file in multiple XSL files, but am unsure what tag to use to reference the file's contents. In other words, I want to copy the text out of a file, and dump it in a certain ...
0
votes
5answers
45 views

Retrieve all the attribute values from XML using XSLT

I can't figure out how to access all the attributes in a tag from an XML document. Let's say I have the following XML: <names> <name firstname="Rocky" lastname="Balboa" divider=", "/> ...
1
vote
0answers
14 views

XslCompiledTransform from XmlDocument to XmlDocument

I have the following VB.NET code that I am using to transform some XML into new XML, that I then continue processing. This is a one off process, not something that is done multiple times, so no ...
1
vote
1answer
25 views

XSL Rewrite a straight xml structure to nested xml

I've a XML structure like: <TOP>top</TOP> <HDR>header</HDR> <LINE>line1</LINE> <LINE>line2</LINE> <LINE>line3</LINE> ...
0
votes
1answer
45 views

SimpleXML insert Processing Instruction (Stylesheet)

I want to integrate an XSL file in an XML string gived me by php CURL command. I tryed this $output = XML gived me by curl option; $hotel = simplexml_load_string($output); ...
1
vote
2answers
32 views

XPATH to display based on conditional value

<chapter> <concept> <title>*********************</title> . . </concept> <sections> ...
1
vote
1answer
22 views

Take attribute when available, otherwise element

I am processing an XML file with XSLT and I would like to get a list of properties per item with the following attributes: If attribute aaa is set, take the value of the attribute If attribute aaa ...
0
votes
2answers
46 views

Group the Coordinates under each Mappoint

I'm trying to use XSLT to process data by grouping it. Sample XML <DELIVERYLEG> <DELIVERYINSTRUCTION> ...
0
votes
0answers
24 views

Get XML childnodes for menu via XSLT [closed]

I have the following XML: <?xml version="1.0" encoding="UTF-8"?> <NavigationTree> <Page ID="18" AreaID="1" MenuText="Parent 1" Href="Default.aspx?ID=18" Allowclick="True" ...
2
votes
2answers
40 views

xslt compare two different nodes and then combine

I have a requirement where i need to show the difference amount (<TotalAmount>) based on two different values which is in different section.The input xml as below. <TXLife ...
0
votes
1answer
21 views

Get error of XSLTProcessor

I would like to get transformation errors. Here is my code: var xsltProcessor = new XSLTProcessor(); xsltProcessor.importStylesheet(xsl); var resultDocument = xsltProcessor.transformToFragment(xml, ...
-2
votes
0answers
49 views

Extract text from current node and from multiple child nodes using XSLT (Converting XML to WordDoc using XSLT and ProcessingML)

Please Read the following points because It gives a brief idea about my code and problem. Converting XML to WordDocument Using XSLT : Uploading XML file through JSP and parsing XML tags and ...
1
vote
2answers
51 views

Split a comma-separated field in XSLT and select or limit the number of fields

I wish to include data from an XML element that is in CSV format. Ironically, the output is a CSV file. The real problem is that the CSV format permits 4 keywords. ,,,,,,one,two,three,four,,,,,, ...
2
votes
2answers
42 views

Generic XSLT transform to manipulate similar XML data

We have a tool which is producing an unwanted XML element and we are using XSLT to translate it to the required format. We are writing a different XSLT for every XML generated by the file. e.g. one ...
1
vote
3answers
24 views

Categorize XML based on element attribute type

With this XML input I am unable to add elements to specific sections. <Country> <info enum="CTRY" name="United Sates of America" total-states="50" /> <info enum="ST" name="New ...
0
votes
2answers
33 views

XSL back button

I'm not an expert in this area. I did some searching but didn't find exactly what I'm looking for. Hopefully it's fairly simple. I'm working on a software control system that has a built-in web ...
0
votes
3answers
37 views

XML transformation and XSLT instruction

I was learning how to convert an XML file into a HTML using just Java, then later I decided to learn how to use the XSLT language to do the same. What happened? After I include the following line ...
2
votes
1answer
24 views

XSLT for loop and find the node with the most ancestors

I'm using XSLT to transform an XML file that is used as the TOC for a documentation set into a format that Excel can delimit. For example, when opened in Excel, the delimited version might look ...
-1
votes
1answer
17 views

XSLT on each looped node, output number of preceding nodes containing a specific element

Given this XML <Employee> <Record> <ID>1</ID> <Amount>10</Amount> </Record> <Record> <ID>2</ID> ...
-4
votes
0answers
18 views

suggest the URLs to learn XSLT and XPATH [closed]

I am new to xml.Can any one please suggest the best sites url's to learn XSLT and Xpath. thanks in advance. <XSLT> and <Xpath>
2
votes
1answer
45 views

Need custom order in flat file from XML using XSLT

I want to create a flat file from an xml using xslt with this output in the order as shown: NM1*CC*1*Smith*John****34*999999999~ N3*100 Main Street~ From this XML: <Claim> <Claimant ...
0
votes
1answer
14 views

Apache FOP and Arial font

My XSL style uses Arial font <fo:block font-family="Arial" font-size="8pt" font-weight="normal"> Configuration file fonts.xml: <?xml version="1.0"?> <fop> <renderers> ...
1
vote
2answers
48 views

xsl ancestor-or-self not return result

I have problem when try to for-each every parent of node. I have XML like this: <item name="news" id="77"> <items> <item id="102" /> <item id="103" /> ...
0
votes
0answers
18 views

How to sort variables in an xsl for-each list

I have the following code: <asp:RadioButtonList ID="PriceSelect_{$ModuleId}" runat="server" RepeatDirection="Vertical" NOWRAP="TRUE"> <xsl:for-each ...
0
votes
2answers
29 views

Output escaped xml in an attribute in an xslt

Input xml: <Parent> <Child attr="thing">stuff</Child> </Parent> xslt: <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> ...
1
vote
3answers
39 views

How to get nodes in this case

I am using xslt 2.0, I have following sample xml, I want to get all "header-lightgray" nodes between the two "header-gray" nodes, the problem here is: I don't know how many "header-lightgray" there. ...
0
votes
2answers
40 views

Cannot re-assign a value to XSLT variable, or can I exit from for-each loop conditionally

Cannot re-assign a value to XSLT variable, or can I exit from <xsl:for-each conditionally my XML <R> <A id="a"> <S id="a111">1</S> <S ...
1
vote
2answers
36 views

Automatically scroll to Element in HTML

I have a XML containing loads of Test data. I use XSLT to present this data in HTML in a Browser. Each Test has a table containing the Teststeps. Every time a test is run the table updates the data in ...
0
votes
1answer
24 views

In PHP, create an ATOM Feed from an RDF based RSS Feed

Because of a legacy system I have that produces an old RDF based RSS 1.0 Feed, and the unability of most of the RSS Readers to handle HTTP Basic Auth, I'd like to have a PHP script that reads this ...
0
votes
5answers
50 views

Retrieve global XSLT variables anywhere

How can I merge the following/consecutive Value Parameters to Output Master Card 1234. XML: <CustomFieldList> <CustomField> <Name>PaymentCardType1</Name> ...
2
votes
1answer
31 views

Is it possible to make xsl:template sensitive to the pushed-from node without using xsl:param?

I'm pretty sure the answer to this is no, but since the only alternative is what I deem inelegant code, I thought I'd throw this out and see if I'm missing something while hoping this hasn't been ...
-2
votes
2answers
37 views

XSLT removing children from parent dynamically

To avoid having to hard code the child element names I want to remove, I'd like to make a dynamic process to remove child elements when a matching parent element name is found. My XML file: ...
1
vote
2answers
37 views

How to load &gt & lt in to another xml using xslt2.0?

Input XML &lt;note&gt; &lt;from&gt;Example&lt;/from&gt; &lt;heading&gt;Reminder&lt;/heading&gt; &lt;body&gt;XSLT conversion&lt;/body&gt; ...
0
votes
2answers
40 views

XSLT does not write <br/> to HTML output

I am using XSLT 1.0 to transform XML into HTML forms for display. One of the XML messages that I get is a big blob of text, and I am not able to get the <br/> at the end of each line to ...
0
votes
0answers
46 views

How to add a newline in XSLT output file [duplicate]

I am trying to write a style sheet to generate code taking an XML file as input. I tried a lot to insert a newline inside an <xsl:text> element by using &#x0a; or &#x0a;&#x13 and ...
0
votes
1answer
15 views

More XSLT and Namespace/Matching Issues

My stylesheet below appears to match all text data in the document and I'm looking to target the one richtext element only and iterate through each run element under each par element. XML: <?xml ...
0
votes
2answers
29 views

XSLT usage to reach attribute value in structured elements with the same name

I hope someone can help me with this problem to which i found no solution at the moment. I am using XSLT for the first time to convert some XML. The trouble I am finding is using a template to get to ...
0
votes
1answer
20 views

Variables in XSLT how to declare , assign value and use that variable in a different location in the same XSLT

Please consider my "A/B" xPath expression returns the following node <Q ID="12345"> ---- ---- </Q> This is my variable This is how I’m trying to assign a value to my ...
-1
votes
1answer
15 views

XSL change value of parameter

Take a look at my XML (simplified): <head> <body> <xs:element type="xs:double"/> </body> </head> What I want to do is to change value "xs:double" to "doubleOrEmpty" ...
0
votes
1answer
44 views

XSLT to convert the nested elements with comma seperated

I am trying to just convert any xml file to CSV format. the issue as when the xml has nested / child elements those values are not output as comma seperated. i have tried lot of examples in other ...
0
votes
1answer
21 views

xslt extract and sort leaf nodes by name - unexpected result

I wanted to extract leaf nodes and have them sorted. My XSL gives unexpected results. How can I solve this? Input <root> <b> <b33 zzz="2" fff="3"></b33> ...
1
vote
1answer
23 views

xslt summing up by group of elements

I have a requirement to add an extra section under TXLifeRequest for summed up payment amount from the below xml. <?xml version="1.0" encoding="utf-8"?> <TXLife ...
2
votes
2answers
53 views

From SOAP to XML using XSLT

So I'm trying to convert (Extract) all the elements within the body of a SOAP document into XML using XSLT. Here's my SOAP document (complete) <?xml version="1.0" encoding="UTF-8" ?> ...
0
votes
2answers
27 views

XSL condition to check if node exists

I want to check if in my XML exists node that has type attribute containing string type_attachment_. Is it a correct way to check it? <xsl:if test="count(*[contains(@Type, 'type_attachment_')]) ...
1
vote
2answers
34 views

Need XSLT Transformation to get Un-ordered List of HTML like structure

I am new to XSLT. I need to transform the below input xml format to the desired output format which is under it (O/P Format is an unorderedList in HTML) using XSLT to use this in a JQuery plugin. I ...
0
votes
1answer
28 views

how to get date difference in xslt

My Schema is : <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:datetime="http://exslt.org/dates-and-times" ...
0
votes
1answer
23 views

xsl:for-each not working

I got an XSL variable named filt and it holds data like this <filters> <ritem relateditemnumber="8901037" /> <ritem relateditemnumber="8901038" /> <ritem ...

1 2 3 4 5 249