Tagged Questions
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 ...
2
votes
3answers
122 views
XSLT to find lowest price
i am beginner in XSLT and using to transform XML to XML.
I require to get Prices tag which has lowest sum.
Source XML:
<Result>
<Fares>
<Fare>
...
2
votes
3answers
159 views
XSL transformation using Java: number format issue
I have JDK6 and using JAXP for the transformation. I am beginner to XSLT.
Source XML:
<Number>
<Value>529.82</Value>
</Number>
XSLT:
<xsl:stylesheet version="1.0" ...
3
votes
3answers
244 views
How to transform xml structure using XSLT-1.0
I need to transform this structure
<A>
<B>value1</B>
</A>
<A>
<B>value2</B>
</A>
into
<A>
<B>value1<B>
<B>value2<B>
...
0
votes
2answers
538 views
Is there a way to have an <xsl:element> tag render *only* if its content template has either children or raw data i.e. complex or simple types?
Folks,
Is there a way to have an tag render only if its content template has either children or raw data i.e. complex or simple types?
Assume my XML Data looks like this:
Data
<Root>
...
1
vote
1answer
167 views
xslt transform list and take max
I want to:
select all attributes "foo", which are string values, and store the values in a list.
transform each value of attribute "foo" in this list using some map in my xslt to a number.
select ...
3
votes
2answers
77 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 ...