473,769 Members | 6,160 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Removing empty nodes

4 New Member
I have an XML file that contains some empty nodes like:

Expand|Select|Wrap|Line Numbers
  1. <sample>
  2.    <test/>
  3.    <test1/>
  4. </sample>
  5.  
I am using Saxon 8.8 to transform this XML into another XML file, but I'd like to remove the empty nodes and leave the rest of the document as it was.

XML:

Expand|Select|Wrap|Line Numbers
  1. <?xml version="1.0" ?>
  2.  
  3. <ROOT>
  4.     <CRITERION>
  5.         <CRITERION_ID>1000</CRITERION_ID>
  6.         <CRITERION_NAME>TEST</CRITERION_NAME>
  7.     </CRITERION>
  8.     <CRITERION>
  9.         <CRITERION_ID>2000</CRITERION_ID>
  10.         <CRITERION_NAME>TESTA</CRITERION_NAME>
  11.     </CRITERION>
  12.     <CRITERION>
  13.         <CRITERION_ID />
  14.         <CRITERION_NAME />
  15.     </CRITERION>
  16.     <CRITERION>
  17.         <CRITERION_ID>3000</CRITERION_ID>
  18.         <CRITERION_NAME>TESTB</CRITERION_NAME>
  19.     </CRITERION>
  20.     <CRITERION>
  21.         <CRITERION_ID />
  22.         <CRITERION_NAME />
  23.     </CRITERION>
  24. </ROOT>
  25.  
Required result:

Expand|Select|Wrap|Line Numbers
  1. <?xml version="1.0" ?>
  2.  
  3. <ROOT>
  4.     <CRITERION>
  5.         <CRITERION_ID>1000</CRITERION_ID>
  6.         <CRITERION_NAME>TEST</CRITERION_NAME>
  7.     </CRITERION>
  8.     <CRITERION>
  9.         <CRITERION_ID>2000</CRITERION_ID>
  10.         <CRITERION_NAME>TESTA</CRITERION_NAME>
  11.     </CRITERION>
  12.     <CRITERION>
  13.         <CRITERION_ID>3000</CRITERION_ID>
  14.         <CRITERION_NAME>TESTB</CRITERION_NAME>
  15.     </CRITERION>
  16. </ROOT>
  17.  
So far I have partly managed this using the following stylesheet:

Expand|Select|Wrap|Line Numbers
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
  3.  
  4. <xsl:output method="xml"/>
  5. <xsl:template match="/">
  6.     <ROOT>
  7.         <xsl:for-each select="//CRITERION">
  8.             <CRITERION>
  9.                 <xsl:copy-of select="CRITERION_ID[normalize-space(.) != '']" />
  10.                 <xsl:copy-of select="CRITERION_NAME[normalize-space(.) != '']" />
  11.             </CRITERION>
  12.         </xsl:for-each>
  13.     </ROOT>
  14. </xsl:template>    
  15.  
  16. </xsl:stylesheet>
  17.  
However, it creates the following:

Expand|Select|Wrap|Line Numbers
  1. <?xml version="1.0" ?>
  2.  
  3. <ROOT>
  4.     <CRITERION>
  5.         <CRITERION_ID>1000</CRITERION_ID>
  6.         <CRITERION_NAME>TEST</CRITERION_NAME>
  7.     </CRITERION>
  8.     <CRITERION>
  9.         <CRITERION_ID>2000</CRITERION_ID>
  10.         <CRITERION_NAME>TESTA</CRITERION_NAME>
  11.     </CRITERION>
  12.     <CRITERION />
  13.     <CRITERION>
  14.         <CRITERION_ID>3000</CRITERION_ID>
  15.         <CRITERION_NAME>TESTB</CRITERION_NAME>
  16.     </CRITERION>
  17.     <CRITERION />
  18. </ROOT>
  19.  
I can see why it does this, but I cannot figure out how to get rid of the empty <CRITERION /> nodes completely.

Any ideas gratefully received.
Mar 20 '07 #1
5 3276
dorinbogdan
839 Recognized Expert Contributor
Try this method:
[html]<?xml version="1.0" encoding="UTF-8"?>

<xsl:output method="xml"/>
<xsl:template match="/">
<ROOT>
<xsl:for-each select="//CRITERION">
<xsl:if test="CRITERION _ID[normalize-space(.) != ''] or CRITERION_NAME[normalize-space(.) != '']">
<CRITERION>
<xsl:copy-of select="CRITERI ON_ID" />
<xsl:copy-of select="CRITERI ON_NAME" />
</CRITERION>
</xsl:if>
</xsl:for-each>
</ROOT>
</xsl:template>

</xsl:stylesheet>[/html]

If CRITERION_ID is empty but CRITERION_NAME is not empty, or vice-versa, then both are printed.
I don't have Saxon, but opened the xml in IE and it shows the text fine.
Mar 20 '07 #2
jhurrell
4 New Member
Try this method:
[html]<?xml version="1.0" encoding="UTF-8"?>

<xsl:output method="xml"/>
<xsl:template match="/">
<ROOT>
<xsl:for-each select="//CRITERION">
<xsl:if test="CRITERION _ID[normalize-space(.) != ''] or CRITERION_NAME[normalize-space(.) != '']">
<CRITERION>
<xsl:copy-of select="CRITERI ON_ID" />
<xsl:copy-of select="CRITERI ON_NAME" />
</CRITERION>
</xsl:if>
</xsl:for-each>
</ROOT>
</xsl:template>

</xsl:stylesheet>[/html]

If CRITERION_ID is empty but CRITERION_NAME is not empty, or vice-versa, then both are printed.
I don't have Saxon, but opened the xml in IE and it shows the text fine.
Genius!!! Thank you Dorin! This does indeed solve the problem!! I had tried an IF tag, but hadn't thought to combine it with an OR.
Thanks again.
Mar 20 '07 #3
dorinbogdan
839 Recognized Expert Contributor
You're always welcome.
Be blessed.
Mar 20 '07 #4
dorinbogdan
839 Recognized Expert Contributor
Since the problem was solved I'll close the thread.
Mar 21 '07 #5
dorinbogdan
839 Recognized Expert Contributor
I re-open the thread in order to allow further comments or suggestions from other members or experts, as per adim request.
Mar 22 '07 #6

Sign in to post your reply or Sign up for a free account.

Similar topics

4
4042
by: Jyrki Keisala | last post by:
Hi, I have an XML file which I want to present as a HTML table, and I'm looking for a quick way of defaulting all empty elements in my XML file to a nbsp (using the   notation) in my XSL transformation file, so that if I have for example an XML record of <record> <elem1>fii</elem1> <elem2 />
4
62495
by: n_o_s_p_a__m | last post by:
My xml doc has many <title></title> and <title> in it, meaning the nodes have no content (although some do). How can I test for this? I tried title (doesn't work) I tried //title (doesn't work) I tried //title (doesn't work) I tried //title (doesn't work) Any suggestions welcome.
4
12594
by: Grant Wagner | last post by:
There doesn't seem to be any mechanism to "clear" a node of all it's children (not that its necessary very often, but I have come across situations where I'd like to clear a node of all it's children before appending other nodes). I've come up with two possibilities: function removeAllChildNodes(node) { if (node && node.hasChildNodes && node.removeChild) { while (node.hasChildNodes()) { node.removeChild(node.firstChild);
0
1292
by: rene.rugerio[at]gmail.com | last post by:
hi forum dumb question here i have this xmldocument which is from a certain xml looping in the nodes i can see which if the attributes are empty the thing here is that i just dont know how to erase the ones aren't filled they appear like <node att1="" att2="yes" att3="ok" att4=""> i want to take att1 and att4 out, any ideas ?
6
6069
by: Pavils Jurjans | last post by:
Hello, Here's the sample XML: <sample1></sample1> <sample2/> From many XML books and online documentations, it is said to be just different syntax for the same data. However, when we analyze the node
1
4284
by: tMan | last post by:
whats the xpath to get all the empty nodes in a document. in the xml below i want to get the nodes <empty> and <t> all other nodes either have a child node or text in them <root> <test> <se> <li>test</li> </se> </test> <bs>
2
10701
by: Greg | last post by:
Hi. I have a rather large xml document (object) that can have one or more nodes with a certain attribute throughout (at ANY depth, not at the same level necessarily). I need to find this attribute and remove the containing node (and child nodes) if it has a certain value. I'm able to find the attributes using an XmlTextReader. Once found, can someone help me get the XPath at that point? I would then use this to remove the node from...
5
11457
by: Jani Yusef | last post by:
Based on an interview question I heard of but did not know the answer to....... How do you find and remove a loop from a singly linked list? In a google groups search I found the following code which will detect the loop but I am stumped how one would remove this loop. Any ideas? typedef enum { FALSE, TRUE } bool;
11
3319
by: David | last post by:
Hi All, I am working on a script that is theoreticaly simple but I can not get it to work completely. I am dealing with a page spit out by .NET that leaves empty tags in the markup. I need a javascript solution to go behind and do a clean up after the page loads. The .NET will leave behind any combination of nested tags. Here is an example below. Even though the <spantags are not empty, as they contain <emtags they also need to be...
0
9423
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10211
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10045
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9994
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8872
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5299
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5447
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3959
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2815
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.