Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: compacting XML?

by choroba (Cardinal)
on Nov 30, 2011 at 08:58 UTC ( [id://940798]=note: print w/replies, xml ) Need Help??


in reply to compacting XML?

I usually use XML::XSH2 for XML manipulation. This code removes all the text that is only whitespace (which is not exactly the same as your specification), but the output is the same as of the other solutions.
for //text() { if xsh:match(., '^\s+$') set . '' }
Update: This should delete only whitespace that has an element sibling:
for //text() { if ((following-sibling::* or preceding-sibling::*) and xsh:match(. +, '^\s+$')) set . '' }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://940798]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (6)
As of 2024-04-18 18:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found