How to Install and Uninstall perl-XML-Parser Package on openSuSE Tumbleweed

Last updated: May 18,2024

1. Install "perl-XML-Parser" package

Please follow the instructions below to install perl-XML-Parser on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-XML-Parser

2. Uninstall "perl-XML-Parser" package

This guide covers the steps necessary to uninstall perl-XML-Parser on openSuSE Tumbleweed:

$ sudo zypper remove perl-XML-Parser

3. Information about the perl-XML-Parser package on openSuSE Tumbleweed

Information for package perl-XML-Parser:
----------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-XML-Parser
Version : 2.470.0-2.1
Arch : x86_64
Vendor : openSUSE
Installed Size : 671.1 KiB
Installed : No
Status : not installed
Source package : perl-XML-Parser-2.470.0-2.1.src
Upstream URL : https://metacpan.org/release/XML-Parser
Summary : Perl module for parsing XML documents
Description :
This module provides ways to parse XML documents. It is built on top of
XML::Parser::Expat, which is a lower level interface to James Clark's expat
library. Each call to one of the parsing methods creates a new instance of
XML::Parser::Expat which is then used to parse the document. Expat options
may be provided when the XML::Parser object is created. These options are
then passed on to the Expat object on each parse call. They can also be
given as extra arguments to the parse methods, in which case they override
options given at XML::Parser creation time.
The behavior of the parser is controlled either by 'STYLES' and/or
'HANDLERS' options, or by setHandlers method. These all provide mechanisms
for XML::Parser to set the handlers needed by XML::Parser::Expat. If
neither 'Style' nor 'Handlers' are specified, then parsing just checks the
document for being well-formed.
When underlying handlers get called, they receive as their first parameter
the _Expat_ object, not the Parser object.