2
votes
1answer
24 views
XSL: Find text not currently in elements and wrap?
Given the following fragment:
<recipe>
get a bowl
<ingredient>flour</ingredient>
<ingredient>milk</ingredient>
mix it all together!
</recipe>
How can I ...
0
votes
3answers
57 views
Xpath search for duplicate
I have the following xml:
<log>
<logentry revision="11956">
<author>avijendran</author>
<date>2013-05-20T10:25:19.678089Z</date>
...
2
votes
2answers
38 views
how to convert xslt version 2.0 to version 1.0
i am using xslt document which uses xpath version 2 functions. I only have xalan 2.6 jar which has xslt 1.0 processor, its a constraint i cannot change it..please help me if there are any tools that ...
2
votes
1answer
54 views
Extract mixed data from xml file
I want to do extract content from a node in a xml file that has mixed child nodes. Here is a copy of the layout:
<content>
bla bal bla...
<p />
<img ...
1
vote
2answers
68 views
+50
Filter Tree using XSLT
i have xml file in tree structure like this final.xml
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="b.xsl"?>
<childrens>
<child_1 entity_id="1" value="Root ...
0
votes
2answers
43 views
How to split child node into multiple sibling child nodes each with a single subnode
I am a newbie at XSLT, so I'm asking for assistance. I have a number of XML documents of which the following is a representative example. The documents are divided into <sub-doc(n)> elements, ...
2
votes
1answer
27 views
Extract parts of string with XPath
I have the following tag in xml:
<GameESRB> Mature10+ </GameESRB>
I want to get all the characters that are not lowercase using XPath 1.0 and XSLT 1.0. Thus the result string for the ...
0
votes
1answer
22 views
XSLT expression ..IF NULL or EMPTY return all rows
I have this XPath expression which works to filter rows with a Contains wildcard string
But I would like it to return ALL rows initially, when search is null or empty. And I need to do it in line if ...
0
votes
1answer
37 views
XSLT: set classes based on element descendants
I'm working with an XSL transformation on the following HTML:
<div id="context">
<p>Sometimes, there is content here.</p>
</div>
<div id="main-content">
...
0
votes
2answers
29 views
Getting different namespaces from xml document
I would like to know how to get different namespaces from my xml document to use in a conversion to xsl-fo. What I have is the following:
XML:
<?xml version="1.0" ?>
<?xml-stylesheet ...
1
vote
2answers
32 views
XPATH to display based on conditional value
<chapter>
<concept>
<title>*********************</title>
.
.
</concept>
<sections>
...
1
vote
2answers
60 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,,,,,, ...
-4
votes
0answers
20 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>
1
vote
3answers
40 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
48 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
67 views
Using XPath - How do I select/count immediate siblings?
I am trying to compound immediate following siblings with the same values together. But I am having trouble to select only the IMMEDIATE siblings.
Input:
<ROWS>
<ROW>
...
1
vote
1answer
28 views
adding attribute which value is another's element's attribute's value
i have xml:
<graph>
<node id="a" />
<node id="b" />
<node id="c" />
<node id="d" />
<link from="a" id="link1" to="b"/>
<link from="b" id="link2" to="d"/>
...
3
votes
2answers
72 views
XSLT - What does “/.” do?
I am new to XSLT, so this question may be a bit silly. Could someone please explain to me what's going on here?
I have a simple XML document (just for testing purposes) and its stylesheet.
I don't ...
-3
votes
1answer
38 views
How do I structure poorly structured content based off of following/preceding-sibling text() node predicates? [closed]
Based on the source XML below, I want to capture the text nodes and <emphasis> elements that do not contain <emphasis bold="yes">NOTE#:</emphasis>, with their corresponding ...
0
votes
3answers
33 views
XSLT: Wrapping a node and following text node with another tag
I've got the below XML document that I'd like to transform using XSLT.
Input:
<ABS>
<B>Heading 1</B>
text
<B>Heading 2</B>
text
<B>Heading 3</B> ...
0
votes
1answer
47 views
XML/XSLT Output pairs
Can someone please give me some guidance on how to find all pairs of movies starring Johnny Depp that were produced in the same year using XSL 1.0, while making sure that each pair is only outputted ...
0
votes
1answer
45 views
Get distinct values from two different parts of an XML using XSLT
I have had a business rule change to one of my XSLTs and I am not sure how to handle it. If you look at the XML below, you will see that I have an employee section and an equipment section. The ...
1
vote
1answer
53 views
Use XSLT to find node and specific attribute value
This is an example of my xml code:
<db>
<group>
<name>Team1</name>
<set num="1">AAA</set>
<set num="2">BBB</set>
<set ...
1
vote
1answer
39 views
Stylesheet is printing data. Why?
I really can't understand this. When running my stylesheet below why are my parameters (see parameters in XML below) printed? That's the only thing that is getting printed. I expect nothing to be ...
0
votes
2answers
233 views
Select distinct value in XSLT for-each-group
I'm having an issue selecting distinct values for each group. The result just doesn't display on screen. The desired result is shown below:
<xsl:for-each-group select="Items/Item" ...
1
vote
1answer
61 views
Cannot query using XPath when data element has attribute **xmlns=“…”**
I have difficulty to query the value of a data element value, when attribute xmlns="..." in it and it's parents element.
The following example is part of a SOAP response, and I want to get the value ...
2
votes
1answer
28 views
Omit the Parent node of a node that doesn't contain specific child node
Can you please help with following xslt. in the following xml , if ul node with data-type ="taxonomy" does not contain ul child node, the parent of that ul node in this case ul node with attribute ...
1
vote
2answers
55 views
How can I summarize nodes using calculation data from other nodes
Using XSLT 1.0, how can I summarize subnodes under a given node while modifiyng the content with data from another set of nodes in an elegant way? Assume I have this xml:
<Root>
...
0
votes
1answer
32 views
SelectSingleNode to Evaluate LowerCase NodeSet value
I am trying to get the value of an xpath expression in lower case using SelectSingleNode, is there an Xpath that can give me the lower case value of an evaluated xpath expression?
It is possible by ...
2
votes
2answers
78 views
XSL 2.0: count total number of unique values
Here is my xml:
<?xml version='1.0' encoding='UTF-8'?>
<wd:Report_Data xmlns:wd="urn:com.workday.report/CR-INT034-ADP-Garnishment_Disbursements_File-Outbound2">
<wd:Report_Entry>
...
0
votes
3answers
58 views
how do I combine xml nodes with certain conditions using xslt?
I have two XML documents I want to combine.
forSale.xml:
<forSale>
<game>
<cover>me3_cover.jpg</cover>
<title>Mass Effect 3</title>
...
0
votes
1answer
28 views
How to create an attribute node and attach it to output node..?
I'm not able to figure out a way to attach an attribute node to output node in below scenario..
input xml:
<record>
<user>
<field name="LastName">user33</field>
...
1
vote
2answers
33 views
Maximum number of distinct subelements per node
Using XSLT 1.0, how do I obtain the maximum number of distinct <info> elements that are children of the same <container> element in a structure like the following (if at all possible)?
...
0
votes
1answer
23 views
passing evaluated xpath to extension
I'm working with lxml python lib.
Assuming we have product xml such as:
<product id='123' />
And want to apply xsl template:
<xsl:template match="product">
<ssi:include ...
0
votes
3answers
67 views
nested <ul> tags in hmtl to xml conversion using xslt
I have these nested <ul> tags. What I want to do is convert some of them to <para> tags. So I have this code:
<xsl:template match="ul">
<para>
<xsl:apply-templates ...
0
votes
1answer
21 views
Changing string patterns to elements using XSLT 2.0
I'm converting an embedded text pattern to an element.
Everything I seem to do add <hit> rather than <hit>.
Here is my input...
<?xml version="1.0" encoding="UTF-8"?>
...
1
vote
1answer
53 views
XSLT XPath Correct Syntax for adding an element to a preceding-sibling
Every time I try to do something similar to:
<xsl:value-of select="wd:XMLNAME_57-Payment_Deducted+preceding-sibling::wd:Result_Lines/wd:XMLNAME_57-Payment_Deducted"></xsl:value-of>
I ...
1
vote
3answers
89 views
Finding the index of a text pattern using XSLT
I need a transform that finds the index of a text pattern within a node. For instance in the XML below. If my text pattern for the <txt> node is "ain", the answer would be 6, 15, 26, and 41.
...
1
vote
1answer
18 views
Can't find what XPath function this belongs to
I'm currently trying to understand a XSL document I am working on and have come across this
<xsl:when test="(string(@hideIfHardwareIs)='')>
I found that in XSLT 2.0 there is fn:string(). Is ...
1
vote
1answer
42 views
How to create nested conditions in XPath that refer to other nodes
In a nested condition, how do I refer to the current node in the "outer" pair of brackets. Say I have the following xml:
<?xml version="1.0" encoding="utf-8"?>
<Root>
<Gizmos>
...
0
votes
1answer
34 views
Turning negative Price amounts to positive
I have to write a small generic conversion in XSL 1.0 that turns the negative prices in to positive when the Book Name concerns a 'NC'. Prices can occur at multiple/any levels. I have to encounter ...
1
vote
1answer
30 views
what is the explicit version of node()
Is the well-known XSLT 1.0 identity template
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
...
1
vote
2answers
76 views
Select all of an element between the current element and the next of the current element
Using XSLT 1.0 (preferably), How can I select all of an element which occurs between the current element and the next time the current element occurs?
Say I have this XML (edited):
<root>
...
0
votes
1answer
35 views
xsl transformation
I have this bxf file. I need to apply an xsl transform to it:
<AAA>
<BBB:Name lang="ABC">Some text</BBB:Name>
</AAA>
Here is my xsl transform:
<test>
...
1
vote
1answer
50 views
how to transform xpath expression to xsl key?
I'm stuck with what should be a simple problem with XSLT keys.
If it is relevant, I'm forced into an XSLT 1.0 parser.
Sample XML:
<updates>
<update>
<id>first</id>
...
1
vote
3answers
53 views
Better performance with XPath Axes Vs Location Path Expression in XSLT/Xpath
which one give better performance when we handling XML with XSLT
XPath Axes (i.e. parent,attribute,child.....) or Location Path Expression (i.e. ./.., ./@attribute ,./childnode,... )
Please help me ...
0
votes
1answer
33 views
fill list with attribute value and compare another attribute value from xsl using xpath
My XML is:
<root>
<emps>
<emp id="1" name="alpha" city="tt" />
<emp id="2" name="beta" city="pp" />
<emp id="3" name="gamma" city="tt" />
</emps>
</root>
...
0
votes
1answer
143 views
XSLT - count the number of child elements by using XPath
I have the following XML file that stores movies and actors details:
<database
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="movies.xsd">
<movies>
...
0
votes
1answer
31 views
XSLT: Transforming XML attributes to XHTML classes?
I have a TEI XML document with content like this:
<said who="#Bernard">“I see a ring,” said Bernard, “hanging above
me. It quivers and hangs in a loop of light.”</said>
<said ...
0
votes
1answer
82 views
XSLT & XPath very complex data transformation
I am working on something where data is delivered in various XML formats, and although I can figure out most of the pieces of how to parse it, I do not know enough about XSLT and XPath to know where ...



