NAME
Util::Medley::String - utility methods for working with strings
VERSION
version 0.007
use base 'Exporter'; our @EXPORT = qw(); # Symbols to autoexport (:DEFAULT tag) our @EXPORT_OK = qw(is_blank trim undef2str); # Symbols to export on request our %EXPORT_TAGS = ( # Define names for sets of symbols all => \@EXPORT_OK, );
METHODS
camelize
Converts a string to camelcase.
usage
camelize(<string>)
trim
This exists because I am tired of hunting down the correct cpan module.