Brick::Filters - do something to the input data


NAME

Brick::Filters - do something to the input data


SYNOPSIS

        use Brick;


DESCRIPTION

_uppercase( HASHREF )

This modifies the input data permanently. It removes the non-digits from the specified value in filter_fields. The value is no longer tainted after this runs. It works on all of the fields.

        filter_fields

This filter always succeeds, so it will not generate an validation error.

_lowercase( HASHREF )

This modifies the input data permanently. It removes the non-digits from the specified value in filter_fields. The value is no longer tainted after this runs. It works on all of the fields.

        filter_fields

This filter always succeeds, so it will not generate an validation error.

_remove_non_digits( HASHREF )

This modifies the input data permanently. It removes the non-digits from the specified value in filter_fields. The value is no longer tainted after this runs. It works on all of the fields.

        filter_fields

This filter always succeeds, so it will not generate an validation error.

_remove_whitespace( HASHREF )

This modifies the input data permanently. It removes the whitespace from the specified value in filter_fields. The value is still tainted after this runs.

        filter_fields

This filter always succeeds, so it will not generate an error.

_remove_extra_fields( HASHREF )

This modifies the input data permanently. It removes any fields in the input that are not also in the 'filter_fields' value in HASHREF.

        filter_fields

This filter always succeeds, so it will not generate an error.


TO DO

TBA


SEE ALSO

TBA


SOURCE AVAILABILITY

This source is part of a SourceForge project which always has the latest sources in SVN, as well as all of the previous releases.

        svn co https://brian-d-foy.svn.sourceforge.net/svnroot/brian-d-foy brian-d-foy

If, for some reason, I disappear from the world, one of the other members of the project can shepherd this module appropriately.


AUTHOR

brian d foy, <bdfoy@cpan.org>


COPYRIGHT

Copyright (c) 2007, brian d foy, All Rights Reserved.

You may redistribute this under the same terms as Perl itself.