Use this tag for questions specific to XSL Transformations version 1.0

learn more… | top users | synonyms

8
votes
3answers
159 views

XSLT: Sort by the lower of 2 values

I have some XML that is formatted as follows: <products> <product> <name>Product 1</name> <price> <orig>15</orig> ...
7
votes
3answers
323 views

XSLT Transforming sequential XML to hierarchical XML

I have a requirement to transform a sequential XML node list into a hierarchical, but I run into some XSLT specific knowledge gap. The input XML contains articles, colors and sizes. In the sample ...
6
votes
2answers
2k views

Upgrading XSLT 1.0 to XSLT 2.0

What is involved in upgrading from XSLT 1.0 to 2.0? 1 - What are the possible reasons for upgrading? 2 - What are the possible reasons for NOT upgrading? 3 - And finally, what are the steps to ...
6
votes
4answers
4k views

Remove Elements and/or Attributes by Name per XSL Parameters

The following does the job of removing unwanted elements and attributes by name ("removeMe" in this example) from an XML file: <xsl:stylesheet version="1.0" ...
6
votes
1answer
669 views

Implementing Key Value Concept in XSLT

I am working on XSLT, where I need to implement something as follows. My Source XML sample looks like this. <?xml version="1.0" encoding="ISO-8859-1"?> <catalog> <cd> ...
6
votes
2answers
4k views

can we use dynamic variable name in the select statement in xslt?

I wanted to use a dynamic variable name in the select statement in xslt. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="xml" ...
6
votes
2answers
16k 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 ...
5
votes
1answer
7k 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.
5
votes
2answers
243 views

High speed XSLT to convert from XML to CSV

I have been trying to get CSV data from an XML document in most efficient time using XSLT. Following is my sample XML <?xml version="1.0" encoding="ISO-8859-1"?> <sObjects ...
5
votes
3answers
3k views

xsl trying to ouput '<' as opposed to '&lt;'

Update: The issue still persists although it is not quite the same as before. Below is an example of what is being input, what is being output and what I want to have output An example of the input: ...
5
votes
2answers
663 views

Remove characters using xsl

I need to remove the following characters from a string value using xsl 1.0 *, /, \, #, %, !, @, $, (, ), & I have come up with the following: ...
5
votes
1answer
619 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 ...
5
votes
2answers
681 views

List of XSLT instructions/functions that change the context node?

Does anyone know of a list of XSLT instructions/functions that change the context node? For example, instruction like for-each is one of them.
5
votes
3answers
953 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
3answers
2k 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 ...
5
votes
1answer
493 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
2answers
123 views

Building out missing parts of XML via XSLT

XSLT Version: 1.0 Data (how it is "rendered"): Data (how it is stored as XML): <data> <item> <row>Row1</row> <col>Col2</col> ...
5
votes
2answers
212 views

how do we render accent char without any encoding

My input has accent characterslike Í,Â,Ç Á, using xslt version 1.0 I need to render those characters without any change. For example : input Í ÇÂME HOME output Í ÇÂME HOME I dont want to ...
4
votes
2answers
6k views

Usage of XSLT Params; <xsl:param> & <xsl:with-param>

Please explain me how best XSLT param can be used. in terms of <xsl:param> & <xsl:with-param> Sample LOC: <xsl:call-template name="ABC"> <xsl:with-param name="title" ...
4
votes
3answers
486 views

XSLT xsl:sequence. What is it good for..?

I know the following question is a little bit of beginners but I need your help to understand a basic concept. I would like to say first that I'm a XSLT programmer for 3 years and yet there are some ...
4
votes
1answer
289 views

XSLT 1.0 and string counting

So I'm trying to solve a problem in xslt which I would normally know how to do in an imperative language. I'm adding cells to a table from a list of xml elements, standard stuff. So: ...
4
votes
2answers
443 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
452 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
11k 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 ...
4
votes
5answers
1k views

XSLT 1.0 variant for distinct-values

I have an XSLT in which I create (from the input data) intermediary variables like the following (hard-coded example, but dynamic in nature): <xsl:variable name="variableX"> <ValidCode ...
4
votes
1answer
643 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
451 views

Use the value of a variable in the mode of apply-templates

I want to apply a template with a mode that depends on a variable value. <xsl:variable name="mode" select="@attribute"/> <xsl:apply-templates mode="{$mode}"/> I get the error that the ...
4
votes
3answers
715 views

How to select the smallest value from a bunch of variables?

Assume I have variables $a, $b, $c and $d which all hold numbers. I would like to get the smallest (largest) value. My typical XSLT 1.0 approach to this is <xsl:variable name="minimum"> ...
4
votes
3answers
116 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
2answers
87 views

XSLT: create parent-child elements based on attribute-values and suppress duplicate elements in output

Being a newbie at XSLT, I'm trying to transform - using XSLT 1.0 - the following XML which describes objects: <Data> <Object> <Property Name="Id" Value="001"/> ...
4
votes
2answers
87 views

Create xsl key by “joining” elements

<t> <rendition xml:id="b">color: blue</rendition> <rendition xml:id="r">color: red</rendition> <tagUsage gi="p" render="b" /> <tagUsage gi="emph" ...
4
votes
4answers
3k 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 ...
4
votes
1answer
70 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() ...
4
votes
2answers
134 views

XSLT Filter result using XSLT array

I am a beginner in XSLT. Below is source XML which i receive. Request tag constains the FlightId which is being used to filter the Result tag. Source XML: <Response> <Request> ...
4
votes
1answer
227 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
630 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
335 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
2answers
164 views

Using xslt to parse and then format names

I'm attempting to write an XSLT stylesheet that will handle author's names and create APA versions of the citation. The format for APA citation regarding author's name(s): Names are listed last name, ...
4
votes
1answer
51 views

Sort using xslt 1.0

I am trying to sort xml document using XSLT version 1.0. My XML looks the following: <?xml version="1.0" encoding="UTF-8"?> <testMain> <test name="test1" enabled="false"> ...
3
votes
4answers
411 views

XSLT 1.0 adding values together from multiple nodes

Say I have the following XML <A>100</A> <B>200</B> <C>300</C> and the following XSLT <TEST> <xsl:value-of select="A + B + C"/> ...
3
votes
4answers
3k 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
2answers
7k views

Performing a “Group By” query in XPath XSL

Given the following XML: <results name="queryResults"> <int name="intfield1:[* TO 10]">11</int> <int name="intfield2:[10 TO 20]">9</int> <int ...
3
votes
4answers
547 views

Get all ancestors of current node

I want to get all ancestors of current node: XML: <root> <item title="a"> <item title="b"> <item title="c"></item> ...
3
votes
4answers
165 views

Output entire XML as an attribute

I'm fairly new to XML and XSL Stylesheets, and I've been tasked with creating a stylesheet for one of our clients. I have already created a stylesheet that outputs an XML in the following format: ...
3
votes
4answers
361 views

Complex xPath query

I need to write a quite complex XSLT 1.0 query. Given the following XML file, I need a query to get the set of authors who are in multiple reports. (for example Antonio Rossi, because he's both on ...
3
votes
4answers
2k views

How to compare strings with Xpath 1.0?

I am experiiencing an issue with the < operator on strings in Xpath 1.0. This simple Xpath expression 'A' < 'B' (or the equivalent 'A' &lt; 'B') did not evaluate to true in my xslt run ...
3
votes
3answers
5k 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
1k 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> ...
3
votes
3answers
115 views

In XSLT, how to set a price range variable and use it elsewhere in the stylesheet?

Would like to transform a price into a an expressed price range , so that I can say, for example, "Under $20" instead of $ 17.95. Using xml:choose is working for me, but when I try to put the result ...
3
votes
3answers
176 views

What assembly is XslTransformException in?

I have some code which is throwing an XslTransformException. This is the desired behavior (the XSL contains an xsl:message element with @terminate set to yes). I'm trying to catch this exception ...

1 2 3 4 5 25