Tagged Questions

Use this tag for questions specific to XSL Transformations version 1.0

learn more… | top users | synonyms

5
votes
1answer
172 views

alternate sorted nodes in XSLT 1.0 without extension function

This a very similar question as XSL: Transforming xml into a sorted multicolumn html table But (unfortunately) there's an extra requirement: it should be XSLT 1.0 without extension functions, i.e. ...
5
votes
3answers
347 views

XSL recursive call - xsl:functions vs xsl:template with call template

I have basic query. I have been using xsl:template and use call tempate to make recursive calls to the template. I see xsl:function which also has feasibility to make recursive function calls like ...
5
votes
2answers
9k views

Tokenizing and sorting with XSLT 1.0

I have a delimited string (delimited by spaces in my example below) that I need to tokenize, sort, and then join back together and I need to do all this using XSLT 1.0. How would I do that? I know I ...
4
votes
1answer
65 views

How can I make a comma delimited list of xml values? xml version 1.0

I have searched for an answer to this with no luck. I'm sure I have overlooked the answer somewhere. However, I am trying to print/display a subset of xml values as a comma delimited list. Here is an ...
4
votes
1answer
150 views

xslt V1.0 - subtemplate with recursive loop returns empty value

I'm trying to get the highest value of the sum of the childs of each cluster. cluster1 : 10 + 20 = 30 cluster2 : 20 + 30 = 50 --> 50 is highest value Problem: The return value of the subtemplate ...
4
votes
1answer
99 views

XSL elements inheriting namespace dynamically

I am writing a stylesheet that is ultimately combined (via code) with varying other stylesheets outside of my control and scope, before transforming XML. I am writing 'xsl:element's within templates, ...
4
votes
1answer
247 views

XSL - Remove non breaking space

In my XSL implementation (2.0), I tried using the below statement to remove all the spaces & non breaking spaces within a text node. It works for spaces only but not for non breaking spaces whose ...
4
votes
3answers
156 views

xsl - grouping nodes based on attributes between 2 nodes

In XSL 1.0, I have had a search and have found similar items around grouping but I think this is slightly different. Apologies if this has already been covered I haven't been able to find the answer ...
4
votes
2answers
213 views

How do I replace sequences of whitespaces by one space but don't trim in XSLT?

The function normalize-space removes leading and trailing whitespace and replaces sequences of whitespace characters by a single space. How can I only replaces sequences of whitespace characters by a ...
4
votes
3answers
90 views

XSL Help required

Hello Am a beginner to XSL hardly know few commands. I was trying out a sample where i have to format a number based on the entry in the XML. I want to use the format-number function to achieve the ...
4
votes
1answer
6k views

“Regular expression”-style replace in XSLT 1.0

I need to perform a find and replace using XSLT 1.0 which is really suited to regular expressions. Unfortunately these aren't available in 1.0 and I'm also unable to use any extension libraries such ...
3
votes
4answers
80 views

Formatting string (Removing leading zeros)

I am newbie to xslt. My requirement is to transform xml file into text file as per the business specifications. I am facing an issue with one of the string formatting issue. Please help me out if you ...
3
votes
2answers
36 views

XSLT 1.0 Tansfomation - Moving Sibling data to Specific Siblings

I am having trouble working out an xslt transformation that I would really appreciate some help with it. I have spent quite a bit of time using a variety of methods in XPath and XQuery. Also, I am ...
3
votes
1answer
36 views

key() function within <key> element

In a key element, it is an error for the value of either the use attribute or the match attribute to contain a variable reference. But can the use attribute or the match attribute contain a key() ...
3
votes
2answers
66 views

Sorting by ID and then by timestamp within the same node

I have a very particular issue regarding sorting with XSL 1.0 (and only 1.0 - I'm using .Net Parser). Here is my xml : <Root> .... <PatientsPN> <Patient> ...
3
votes
1answer
52 views

XSLT: Check if a value exists in a list

So, I have a variable containing a nodeset with several Size nodes <xsl:variable name="sizes" select="$filter/Size" /> I then, need to do a sum on another nodeset, where the Size/@ID exists ...
3
votes
2answers
89 views

Dynamically include other XSL files in XSLT

I have a small problem, is there a way to dynamically include another xsl? For example: <xsl:variable name="PathToWeb" select="'wewe'"/> <xsl:include ...
3
votes
2answers
81 views

XSLT get part of string or url

I'm getting the following XML-element back in an XML file. From this element I need to retrieve the URL information. <Page SmallImage="" LargeImage="" Icon="" MenuText="Text" MouseOver="" Image="" ...
3
votes
4answers
148 views

Using xslt get node value at X position

How can I get using xslt, node value at X position, without using foreach <items> <item1>x</item1> <item2>x</item2> <item3>x</item3> </items> This is ...
3
votes
1answer
131 views

How to convert hyphen in text feature list to HTML list items using XSLT?

I have an XML file for Real Estate property listings - one of the fields, called 'AdvNotes' contains features of the property. These are usually entered as plain text as follows: Property features: ...
3
votes
1answer
122 views

group by multiple attributes from xml with xslt

I have the following xml <smses> <sms address="87654321" type="1" body="Some text" readable_date="3/09/2011 2:16:52 PM" contact_name="Person1" /> <sms address="87654321" type="2" ...
3
votes
1answer
128 views

XSLT Grouping within sub groups using generate-id() is discarding repeat keys from earlier groups

I'm having trouble producing rolled-up groups when the keys I need can be repeated across groups from my input file. I'm using the muenchian method to do the grouping, as I'm stuck with xslt 1.0, and ...
3
votes
1answer
166 views

xslt V1.0 - Simplest way to return multiple values from a subtemplate

I'm looking for an elegant way to return multiple values from one subtemplate. why? - I have a subtemplate with a recursive loop that returns the max value of a node in an xml. I also need the min ...
3
votes
5answers
126 views

How to Duplicate xml elements

i have to duplicate the xml payload into as many xml payloads based on a specific id, e.g., userid <ns2:Details xmlns:ns2="ns"> <ns2:var1>AA0511201143</ns2:var1> ...
3
votes
5answers
94 views

How to find nodes with same children

I have following xml. Note that node n1 and n3 have same children (order can be different). How can I write an XSL transformation to identify such nodes? <Document> <Node name="n1"> ...
3
votes
2answers
69 views

How can I sort elements by new counted values in their child element. XSLT 1.0

I have an xml sheet of this kind: <houses> <house number="1"> <mainroom> <roomprice>5</roomprice> <roomtax>2</roomtax> ...
3
votes
1answer
120 views

How to write an XSL 1.0 stylesheet with a node-set() function that will run on both MSXML and libxml

I have an XSLT 1.0 stylesheet running using the XSL processor included with PHP (libxml). I want to get the same stylesheet to run on the Microsoft XSL processor MSXML 6.0 (msxml6.dll) ideally so the ...
3
votes
3answers
146 views

XSLT key element: “use” parent node of the “match”

I can't seem to figure this thing out. Is it at all possible to have the following key? <xsl:key name="kMatchSentenceID_withTokId" match="sentences/sentence/@ID" use="--and here return ...
3
votes
2answers
248 views

Wrap words in tags using XSLT

How can I wrap span tags (or any tag) around individual words in XSLT? I'm using XSLT1 but seem to be getting stuck each time I try. Essentially, I want to pass in a paragraph (or string of text): ...
3
votes
1answer
557 views

XSLT split output files - muenchian grouping

I have an XSLT file so as to transform large amount of data. I would like to add a "split" functionality, either as a chained XSLT or within the current XSLT that can create multiple output files so ...
3
votes
3answers
313 views

List every node in an XML file

Simple situation... With any random XML file, I want to create a list of every node that it contains, but without any duplicates! So something like: <root name="example"> <child id="1"> ...
3
votes
2answers
125 views

Processing cyclic dependencies with XSLT

I’m processing an XML file that, simplified, looks something like this: <resources> <resource id="a"> <dependency idref="b"/> <!-- some other stuff --> ...
3
votes
1answer
141 views

XSLT 1 Plain Text Spacing

Using Perl's XML::LibXSLT necessitates that I use XSLT 1.0, which means that I am stuck without XSLT 2.0 features. Is there a way that I can still pad text cleanly in a plain-text output from my ...
3
votes
3answers
2k views

(xslt 1.0) How to replace the space with some string from all the text values in xml?

EDIT: [it started with character replacement and I ended up with discovering string replacements with help of Dimitre Novatchev and Roland Bouman I think the sample codes are sufficient to ...
3
votes
4answers
305 views

(XSLT, Code optimization) How to output the nodes refering to the value of sibling-nodes ..?

I am transforming XML to XML using XSLT, The objective is to read the value of tag <node1>, if it is null then it must be assigned with the value of <node2>, if incase <node2>, is ...
3
votes
4answers
738 views

How to extract unique characters from a string using XSLT 1.0?

one of the toughest challenges I have ever faced in XSLT designing .. How to copy the unique characters in a given string .. Test xml is: <root> <string>aaeerstrst11232434</string> ...
2
votes
3answers
59 views

using XPath to select contiguous elements with a certain attribute value

I have XML like this: <span>1</span> <span class="x">2</span> <span class="x y">3</span> <span class="x">4</span> <span>5</span> <span ...
2
votes
1answer
53 views

Changing URL query string parameter value in for-each loop, xslt

I am using a key to get distinct values from a column's substring as follows: <xsl:for-each select="//dsQueryResponse/Rows/Row[generate-id() = generate-id(key('Years',substring(@Date, ...
2
votes
1answer
30 views

How can I use the value of a variable for the use property of a key in XSLT, I want to achieve use=“$Variable” in the key tag;;

Suppose I have a key defined in an xslt file in SharePoint Designer 2010 as: <xsl:key name="Years" match="/dsQueryResponse/Rows/Row" use="@Date" /> Where @Date is the column, however instead ...
2
votes
1answer
38 views

How do I use SUM and AVERAGE in XSL?

I want to the total kilometers per car and the average kilometers per day This is the input XML : <?xml version="1.0" encoding="ISO-8859-1" ?> <output> <cars> ...
2
votes
2answers
53 views

xslt1.0 (firefox): reformatting xml code based on the total number of different values present

This one I really think is not possible to solve through XSLT, so that I will have to do something with JS or just do not implement. But before giving up, of course I have to post here to see if I am ...
2
votes
1answer
27 views

Concatenate string in a loop

I am newbie to XSLT and fighting to get the right syntax for concatinating string in for-each loop. I have two variables declared depending on the condition need to concatenate a string to the ...
2
votes
2answers
54 views

How do I time my XSLT execution times to millisecond accuracy?

I have an XSLT (running under Sitecore) that I'd like to benchmark. For example: <xsl:variable name="start_ms" select="TIME IN MILLIS" /> Do something <xsl:variable name="end_ms" ...
2
votes
1answer
31 views

Convert News listing into HTML menu grouping by year and month

The goal is to output a <ul> removing duplicate months grouped by year using xslt 1.0. This appears to be similar to Grouping XML nodes by Month and Year in XSLT but I am unsure on how to ...
2
votes
1answer
34 views

XSLT-1.0 how to eliminate redundancy, but selecting one particular node instead of the first

I have this XML <data> <peptides> <peptide> <accession>111</accession> <sequence>AAA</sequence> ...
2
votes
2answers
50 views

XSLT: XPath context and document()

I have an XSLT like this: <?xml version="1.0" encoding="UTF-8"?> <xsl:transform version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" ...
2
votes
2answers
88 views

align text horizontally and vertically in alphabetical order

I have few titles which I am getting by having for loop around some xml(It can be n no. of titles). I want to display them horizontally in 3 columns but vertically in alphabetical order: If I have 3 ...
2
votes
4answers
56 views

Transform an int to a char

I'd like to write the alphabet with a link for each letter. So I used templates but I don't how to make this letter I tried that but I had a normal mistake : (A decimal representation must imediately ...
2
votes
2answers
48 views

xslt grouping list

I have the xml file with a simple form and I want to display the content with xslt (1.0) in a list grouped by category, the books to be grouped by the category field. An idea for this? thanks I am ...
2
votes
1answer
122 views

xslt 1.0 string replace function

I have a string "aa::bb::aa" and need to turn it in to "aa, bb, aa" I have tried translate(string,':',', ') but this returns "aa,,bb,,aa" How can this be done.

1 2 3 4 5 6