0
votes
3answers
153 views

How to remove duplicates in xml files using xslt?

Sample xml is as below: <?xml version="1.0" encoding="UTF-8" standalone="no"?> <check> <val> <Samsung> <name value="galaxy"/> ...
0
votes
1answer
86 views

XSLT Query nodes by attributes

I need to query a big XML file to extract sub XML tree containing only desired nodes with attributes equal to a given parameter. Here is my source file <a:level1 xmlns:a="some:a" ...
0
votes
1answer
119 views

How to select the value from an attribute that has a colon in xslt?

I am working with xslt to handle the results that are returned from a web service. I first need to determine which web service the results are for. I know that the tag platformCore:record has the ...
0
votes
2answers
125 views

Transform an XML structure into an TABLE TR TD with XSLT

I have a problem with transforming an XML structure: <?xml version="1.0" encoding="ISO-8859-1"?> <?xml-stylesheet type="text/xsl" href="ceva.xsl"?> <!-- Edited by XMLSpy® --> ...
-2
votes
2answers
80 views

XSLT code - retrieving data from xml(substring)

I have the following string as a text node in an XML document: OK - load average: 0.34,0.02,0.34 USERS OK - 0 users currently logged in,100,200 HTTP WARNING: HTTP/1.1 403 Forbidden PING OK - Packet ...
-1
votes
1answer
49 views

Should we rewrite the XSL in CDuce?

We currently have a huge XSLT transformation that takes 20-30 minutes to process. We need to improve the performance and we are considering CDuce. CDuce looks promising. What is a good approach to ...
0
votes
2answers
82 views

XSL for each on the xml being transformed inside a for each of parm

I have the following xml <root> <element id='1'>blah</element> <element id='2'>blah</element> <element id='3'>blah</element> ...
0
votes
2answers
74 views

Output XML from combined XML's in a XSL

I got some huge problems figuring how to output a clean XML from an XSL that imports two XML's and combines the data. I was trying to find more info about <xsl:output method="xml" version="1.0" ...
0
votes
1answer
60 views

xsl grouping by xml element for repetitive nodes in xslt1 into html table output

I have a complex xml structure that looks like : <Items> <Item> <ItemTexts> <ItemText> ...
1
vote
1answer
106 views

xsl grouping of repetitive nodes by xml element in xslt1

I have a complex xml structure that looks like : <Items> <Item> <ItemTexts> <ItemText> ...
0
votes
2answers
234 views

XSL analyze string alternative for XSL 1.0

Is there a way to perform the analyze string operation in XSL 1.0 For example in XSL 2.0 we can have: <xsl:analyze-string select="Description" regex="$param1"> ...
0
votes
3answers
251 views

percent causing NAN XSLT

I am attempting to parse a document using XSLT 1.0 for insertion into a database and I am noticing an issue where any time I have a % value it will return as 'NaN' rather than the actual value. I ...
0
votes
1answer
278 views

Xslt : Create root element (Starting Tag )dynamically

Following are the nodes in XML Data <WebServiceUrl>"http://webser.part.site"</WebServiceUrl> <UserName>nida</UserName> <Passsword>123</Password> ...
1
vote
1answer
47 views

Will there be any tree generated in the buffer for <xsl:apply-templates> How can I imagine that?

My input.xml is as follows: <root> <Property> <info> <Name>A</Name> <Value>1000</Value> </info> ...
1
vote
1answer
168 views

Converting an Input XML to OTHER XML using XSLT [duplicate]

Possible Duplicate: Converting input xml using xslt to other XML I am astarter in XSLT. I have looked some codes for the task i was interested on and built some logic but i could not get ...
-4
votes
1answer
914 views

Convert one xml file to another xml file using xsl transformation

This is something related to XSL transformations. input.xml <?xml version="1.0" encoding="utf-8"?> <?xml-stylesheet type="text/xsl" href="/x/transform.xsl"?> <!-- input file root ...
1
vote
2answers
124 views

XSLT only output part of a node in certain conditions

I often get some XML that isn't formatted as I'm expecting it to be, and am looking for the best way to automatically fix it. Unfortunately, the solution is skating over my head. I'm working on ...
0
votes
1answer
251 views

XSLT: Parse comma separated text from an attribute

I have a xml that looks like below <xsl:template match="//xml"> <xsl:for-each select="//z:row"> <ul class ="cstm-quicklinks"> <li> ...
2
votes
4answers
165 views

Preventing 2^n - 1 conditionals in XSL 1.0

Given the following XML: <root> Pacman <format bold="1" italic="1">rules</format>! </root> What is a better implementation than the following, which results in 2n-1 ...