Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: How can I add missing XML open tags

by Laurent_R (Canon)
on Dec 03, 2013 at 18:44 UTC ( [id://1065476]=note: print w/replies, xml ) Need Help??


in reply to How can I add missing XML open tags

I don't know of there is any module to do that, but if you want to do it manually, you could have a hash in which the keys will be the tag name (probably stripped of the < and >). Parse your file, for each opening tag, increment the value of the hash for that tag. For each closing tag, strip the </ and >, see if the hash exists for that tag and if the value is 0: if the hash does not exist for that tag or the value is zero, add an opening tag; if the value exists and if the value is larger than 0, decrement the hash value for that tag.

EDIT: well it seems there is a module, I had not seen the previous answers when I started to post mine. Forget the above and use the module.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (5)
As of 2024-03-29 12:05 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found