How to Install and Uninstall perl-XML-Parser Package on openSUSE Leap

Last updated: May 19,2024

1. Install "perl-XML-Parser" package

This tutorial shows how to install perl-XML-Parser on openSUSE Leap

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

2. Uninstall "perl-XML-Parser" package

Learn how to uninstall perl-XML-Parser on openSUSE Leap:

$ sudo zypper remove perl-XML-Parser

3. Information about the perl-XML-Parser package on openSUSE Leap

Information for package perl-XML-Parser:
----------------------------------------
Repository : Main Repository
Name : perl-XML-Parser
Version : 2.44-1.443
Arch : x86_64
Vendor : SUSE LLC
Installed Size : 1.4 MiB
Installed : No
Status : not installed
Source package : perl-XML-Parser-2.44-1.443.src
Upstream URL : http://search.cpan.org/dist/XML-Parser/
Summary : A perl module for parsing XML documents
Description :
This module provides ways to parse XML documents. It is built on top of the
XML::Parser::Expat manpage, 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 'the /STYLES manpage'
and/or 'the /HANDLERS manpage' options, or by the /setHandlers manpage
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.