How to Install and Uninstall perl-HTML-TokeParser-Simple Package on openSUSE Leap

Last updated: June 04,2024

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

Please follow the steps below to install perl-HTML-TokeParser-Simple on openSUSE Leap

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

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

Please follow the instructions below to uninstall perl-HTML-TokeParser-Simple on openSUSE Leap:

$ sudo zypper remove perl-HTML-TokeParser-Simple

3. Information about the perl-HTML-TokeParser-Simple package on openSUSE Leap

Information for package perl-HTML-TokeParser-Simple:
----------------------------------------------------
Repository : Main Repository
Name : perl-HTML-TokeParser-Simple
Version : 3.16-bp155.2.8
Arch : noarch
Vendor : openSUSE
Installed Size : 62.1 KiB
Installed : No
Status : not installed
Source package : perl-HTML-TokeParser-Simple-3.16-bp155.2.8.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'.