Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

RE: Quick solutions to easy problems

by tenatious (Beadle)
on Aug 21, 2000 at 05:44 UTC ( [id://28759]=note: print w/replies, xml ) Need Help??


in reply to Quick solutions to easy problems

I'm not going to write a one liner. I'm going to do it slower and with modules that I like:
use XML::Simple; opendir DIRECTORYOFNAUGHTYFILES, "/directory/path"; @xfiles = grep !/\.\.?/, readdir DIRECTORYOFNAUGHTYFILES; @xfiles = grep /\.xml$/, @xfiles; for $xfile (@xfiles) { $xfile="/directory/path/$xfile"; $xml = XMLin($xfile); $xml->{OPERATORID} = substr($xml->{OPERATORID},0,10); $newxml = XMLout($xml); open XFILE, ">$xfile"; print XFILE $newxml; }
The only trouble with this, is that it will probably change the original XML file structure a bit. You'll probably want to write a write_xml sub or something to overcome this. Another problem is that it does every file in the directory... you may not want that to happen. Another problem is that you might just want to do one file at a time. And I'm sure there are other problems. I like to use XML::Simple for just about everything, and when a man first gets a hammer, he thinks everything is a nail.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (4)
As of 2024-04-26 00:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found