NAME
Util::Medley::String - utility methods for working with strings
VERSION
version 0.009
SYNOPSIS
...
DESCRIPTION
...
METHODS
camelize
Converts a string to camelcase.
isBlank
Checks whether a string is strictly whitespace or empty.
ltrim
Just a pass-through to String::Util::ltrim.
pascalize
Converts a string to Pascal case.
rtrim
Just a pass-through to String::Util::rtrim.
snakelize
Converts a string to snake case.
titleize
Converts a string to title case.
trim
Just a pass-through to String::Util::trim.
undefToString
Convert scalar to a string if its value is undef. The string arg is optional and defaults to ''.