App-CaseUtils

 view release on metacpan or  search on metacpan

README  view on Meta::CPAN

FUNCTIONS
  lowercase
    Usage:

     lowercase() -> [$status_code, $reason, $payload, \%result_meta]

    Change input to lower case.

    This is basically a simple shortcut for something like:

     % perl -ne'print lc' INPUT ...
     % perl -pe'$_ = lc' INPUT ...

    with some additional options.

    This function is not exported.

    No arguments.

    Returns an enveloped result (an array).

    First element ($status_code) is an integer containing HTTP-like status

README  view on Meta::CPAN


  uppercase
    Usage:

     uppercase() -> [$status_code, $reason, $payload, \%result_meta]

    Change input to upper case.

    This is basically a simple shortcut for something like:

     % perl -ne'print uc' INPUT ...
     % perl -pe'$_ = uc' INPUT ...

    with some additional options.

    This function is not exported.

    No arguments.

    Returns an enveloped result (an array).

    First element ($status_code) is an integer containing HTTP-like status

lib/App/CaseUtils.pm  view on Meta::CPAN


our %SPEC;

$SPEC{uppercase} = {
    v => 1.1,
    summary => 'Change input to upper case',
    description => <<'MARKDOWN',

This is basically a simple shortcut for something like:

    % perl -ne'print uc' INPUT ...
    % perl -pe'$_ = uc' INPUT ...

with some additional options.

MARKDOWN
    args => {
    },
};
sub uppercase {
    my %args = @_;

lib/App/CaseUtils.pm  view on Meta::CPAN

    [200];
}

$SPEC{lowercase} = {
    v => 1.1,
    summary => 'Change input to lower case',
    description => <<'MARKDOWN',

This is basically a simple shortcut for something like:

    % perl -ne'print lc' INPUT ...
    % perl -pe'$_ = lc' INPUT ...

with some additional options.

MARKDOWN
    args => {
    },
};
sub lowercase {
    my %args = @_;

lib/App/CaseUtils.pm  view on Meta::CPAN

=head2 lowercase

Usage:

 lowercase() -> [$status_code, $reason, $payload, \%result_meta]

Change input to lower case.

This is basically a simple shortcut for something like:

 % perl -ne'print lc' INPUT ...
 % perl -pe'$_ = lc' INPUT ...

with some additional options.

This function is not exported.

No arguments.

Returns an enveloped result (an array).

First element ($status_code) is an integer containing HTTP-like status code

lib/App/CaseUtils.pm  view on Meta::CPAN

=head2 uppercase

Usage:

 uppercase() -> [$status_code, $reason, $payload, \%result_meta]

Change input to upper case.

This is basically a simple shortcut for something like:

 % perl -ne'print uc' INPUT ...
 % perl -pe'$_ = uc' INPUT ...

with some additional options.

This function is not exported.

No arguments.

Returns an enveloped result (an array).

First element ($status_code) is an integer containing HTTP-like status code

script/lowercase  view on Meta::CPAN

B<lowercase> B<L<--help|/"--help, -h, -?">> (or B<L<-h|/"--help, -h, -?">>, B<L<-?|/"--help, -h, -?">>)

B<lowercase> B<L<--version|/"--version, -v">> (or B<L<-v|/"--version, -v">>)

B<lowercase> [B<L<--format|/"--format=s">>=I<name>|B<L<--json|/"--json">>] [B<L<--(no)naked-res|/"--naked-res">>] [B<L<--page-result|/"--page-result">>[=I<program>]|B<L<--view-result|/"--view-result">>[=I<program>]]

=head1 DESCRIPTION

This is basically a simple shortcut for something like:

 % perl -ne'print lc' INPUT ...
 % perl -pe'$_ = lc' INPUT ...

with some additional options.

=head1 OPTIONS

C<*> marks required options.

=head2 Output options

=over

script/uppercase  view on Meta::CPAN

B<uppercase> B<L<--help|/"--help, -h, -?">> (or B<L<-h|/"--help, -h, -?">>, B<L<-?|/"--help, -h, -?">>)

B<uppercase> B<L<--version|/"--version, -v">> (or B<L<-v|/"--version, -v">>)

B<uppercase> [B<L<--format|/"--format=s">>=I<name>|B<L<--json|/"--json">>] [B<L<--(no)naked-res|/"--naked-res">>] [B<L<--page-result|/"--page-result">>[=I<program>]|B<L<--view-result|/"--view-result">>[=I<program>]]

=head1 DESCRIPTION

This is basically a simple shortcut for something like:

 % perl -ne'print uc' INPUT ...
 % perl -pe'$_ = uc' INPUT ...

with some additional options.

=head1 OPTIONS

C<*> marks required options.

=head2 Output options

=over



( run in 0.698 second using v1.01-cache-2.11-cpan-13bb782fe5a )