How to Install and Uninstall perl-Text-Capitalize Package on openSUSE Leap

Last updated: May 01,2024

1. Install "perl-Text-Capitalize" package

This guide covers the steps necessary to install perl-Text-Capitalize on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install perl-Text-Capitalize

2. Uninstall "perl-Text-Capitalize" package

Please follow the guidance below to uninstall perl-Text-Capitalize on openSUSE Leap:

$ sudo zypper remove perl-Text-Capitalize

3. Information about the perl-Text-Capitalize package on openSUSE Leap

Information for package perl-Text-Capitalize:
---------------------------------------------
Repository : Main Repository
Name : perl-Text-Capitalize
Version : 1.5-bp155.2.9
Arch : noarch
Vendor : openSUSE
Installed Size : 35.4 KiB
Installed : No
Status : not installed
Source package : perl-Text-Capitalize-1.5-bp155.2.9.src
Upstream URL : https://metacpan.org/release/Text-Capitalize
Summary : Capitalize strings ("to WORK AS titles" becomes "To Work as Titles")
Description :
Text::Capitalize provides some routines for *title-like* formatting of
strings.
The simple *capitalize* function just makes the inital character of each
word uppercase, and forces the rest to lowercase.
The *capitalize_title* function applies English title case rules (discussed
below) where only the "important" words are supposed to be capitalized.
There are also some customization features provided to allow the user to
choose variant rules.
Comparing *capitalize* and *captialize_title*:
Input: "lost watches of splitsville"
capitalize: "Lost Watches Of Splitsville"
capitalize_title: "Lost Watches of Splitsville"
Some examples of formatting with *capitalize_title*:
Input: "KiLLiNG TiMe"
capitalize_title: "Killing Time"
Input: "we have come to wound the autumnal city"
capitalize_title: "We Have Come to Wound the Autumnal City"
Input: "ask for whom they ask for"
captialize_title: "Ask for Whom They Ask For"
Text::Capitalize also provides some functions for special effects such as
*scramble_case*, which typically would be used for this sort of
transformation:
Input: "get whacky"
scramble_case: "gET wHaCkY" (or something similar)