That would be "Perl In a Nutshell". I also recommend it.
Jerry M. Howell II wrote:
O'Riely puts out a book most of my perl friends call the cammel book.
Probably becuse of the cammel on the front cover, that would be my
recomendation
On Fri, 22 Nov 2002 17:23:41 +0530
Sunil Sonnad <[EMAIL PROT
Hi,
I have something like: /usr/local/home/mel/file.txt and I'd like to
strip it so that I can put the path in a variable, the file name in
another one and the extention in a another one as well. How do I do
that, can I do it all in a same expression. Something like, $path =
/usr/local/home/me
Anybody got an idea on this?
It would be really helpful.
Melanie Rouette wrote:
Hi,
If I have something like:
Father Brian
Mother Elisabeth
Sister Judy
brother Lathan
and I want to update the Sister Judy element only,
based on the fact that I want to update only the element that
Melanie Rouette wrote:
Hi,
If I have something like:
Father Brian
Mother Elisabeth
Sister Judy
brother Lathan
and I want to update the Sister Judy element only,
based on the fact that I want to update only the element that has the
word "Sister" in it's text cont
Hi,
If I have something like:
Father Brian
Mother Elisabeth
Sister Judy
brother Lathan
and I want to update the Sister Judy element only,
based on the fact that I want to update only the element that has the
word "Sister" in it's text content. (Let's say I want to change the name
Hi,
How do I subscribe to the perl xml mailing list?
thanks
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
There's also XML::LibXML::Document
XML::LibXML::Node.
I currently use them and they do the job. The Document module emulates a
DOM tree while you can use the Node module to work with your element nodes.
Mel
Admin-Stress wrote:
Hi,
anyone can suggest me XML module for reading/parsing/modifying
Hi,
I need to create xml DOM trees from scratch save them as xml files
so that I can reload them & make modifications to the elements'
values as well as adding new elements or attributes. Right now I'm
using the XML::LibXML::Document & XML::LibXML::Element classes.
And I have a bunch of quest