|
|
XML::LibXML::Text - The DOM Text Node Class
use XML::LibXML
$text = XML::LibXML::Text->new( $content ); $nodedata = $text->data; $text->setData( $text_content ); $text->substringData($offset, $length); $text->appendData( $somedata ); $text->insertData($offset, $string); $text->deleteData($offset, $length); $text->deleteDataString($remstring, $all); $text->replaceData($offset, $length, $string); $text->replaceDataString($old, $new, $flag); $text->replaceDataRegEx( $search_cond, $replace_cond, $reflags );
Different to the DOM specification XML::LibXML implements the text node as the base class of all character data node. Therefor there exists no CharacterData class. This allow one to use all methods that are available for textnodes as well for Comments or CDATA-sections.
$text->data
and
$text->nodeValue
will have the same result and are not different entities.
If the node contains no data or $offset referes to an nonexisting string index, this function will return undef. If $length is out of range substringData will return the data starting at $offset instead of causing an error.
The $offset has to be a positive value. If $offset is out of range, insertData will have the same behaviour as appendData.
The functions takes two parameters: $string and optional the $all flag. If $all is not set, undef or 0, deleteDataString will remove only the first occourance of $string. If $all is TRUE deleteDataString will remove all occourences of $string from the node data.
replaceData()
:)
Instead of giving offsets and length one can specify the exact string ($oldstring) to be replaced. Additionally the $all flag allows to replace all occourences of $oldstring.
NOTE: This is a shortcut for
my $datastr = $node->getData(); $datastr =~ s/somecond/replacement/g; # 'g' is just an example for any flag $node->setData( $datastr );
This function can make things easier to read for simple replacements. For more complex variants it is recommented to use the code snippet above.
Matt Sergeant, Christian Glahn
XML::LibXML, XML::LibXML::Node, XML::LibXML::Element, XML::LibXML::Document, XML::LibXML::Comment, XML::LibXML::DocumentFragment
1.53