How to Install and Uninstall perl-Text-Capitalize Package on openSuSE Tumbleweed

Last updated: May 15,2024

1. Install "perl-Text-Capitalize" package

Please follow the guidelines below to install perl-Text-Capitalize on openSuSE Tumbleweed

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

2. Uninstall "perl-Text-Capitalize" package

Please follow the step by step instructions below to uninstall perl-Text-Capitalize on openSuSE Tumbleweed:

$ sudo zypper remove perl-Text-Capitalize

3. Information about the perl-Text-Capitalize package on openSuSE Tumbleweed

Information for package perl-Text-Capitalize:
---------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Text-Capitalize
Version : 1.5-1.20
Arch : noarch
Vendor : openSUSE
Installed Size : 34.4 KiB
Installed : No
Status : not installed
Source package : perl-Text-Capitalize-1.5-1.20.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)