|
NAMEHTML::DOM::Text - A Perl class for representing text nodes in an HTML DOM treeVERSIONVersion 0.058SYNOPSISuse HTML::DOM; $doc = HTML::DOM->new; $comment = $doc->createComment("yayayayayayaaya"); $comment->data; # 'yayayayayayaaya' $comment->length; # 27 $comment->substringData(13); # 'ya' # etc. DESCRIPTIONThis class implements the Comment interface for HTML::DOM. It inherits from HTML::DOM::CharacterData, which inherits from HTML::DOM::Node.METHODSHTML::DOM::Comment's Own Methods
Inherited MethodsThese are inherited from HTML::DOM::CharacterData:
These are inherited from HTML::DOM::Node:
SEE ALSOHTML::DOMHTML::DOM::CharacterData HTML::DOM::Node
Visit the GSP FreeBSD Man Page Interface. |