How to Install and Uninstall perl-HTML-TokeParser-Simple Package on openSuSE Tumbleweed

Last updated: May 07,2024

1. Install "perl-HTML-TokeParser-Simple" package

Please follow the step by step instructions below to install perl-HTML-TokeParser-Simple on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-HTML-TokeParser-Simple

2. Uninstall "perl-HTML-TokeParser-Simple" package

This tutorial shows how to uninstall perl-HTML-TokeParser-Simple on openSuSE Tumbleweed:

$ sudo zypper remove perl-HTML-TokeParser-Simple

3. Information about the perl-HTML-TokeParser-Simple package on openSuSE Tumbleweed

Information for package perl-HTML-TokeParser-Simple:
----------------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-HTML-TokeParser-Simple
Version : 3.16-5.30
Arch : noarch
Vendor : openSUSE
Installed Size : 53.9 KiB
Installed : No
Status : not installed
Source package : perl-HTML-TokeParser-Simple-3.16-5.30.src
Upstream URL : http://search.cpan.org/dist/HTML-TokeParser-Simple/
Summary : Easy to use C interface
Description :
'HTML::TokeParser' is an excellent module that's often used for parsing
HTML. However, the tokens returned are not exactly intuitive to parse:
["S", $tag, $attr, $attrseq, $text]
["E", $tag, $text]
["T", $text, $is_data]
["C", $text]
["D", $text]
["PI", $token0, $text]
To simplify this, 'HTML::TokeParser::Simple' allows the user ask more
intuitive (read: more self-documenting) questions about the tokens
returned.
You can also rebuild some tags on the fly. Frequently, the attributes
associated with start tags need to be altered, added to, or deleted. This
functionality is built in.
Since this is a subclass of 'HTML::TokeParser', all 'HTML::TokeParser'
methods are available. To truly appreciate the power of this module, please
read the documentation for 'HTML::TokeParser' and 'HTML::Parser'.