package HTML::FormFu::Filter::NonNumeric;
use strict;
use base 'HTML::FormFu::Filter::Regex';
sub match {qr/\D+/}
1;
__END__
=head1 NAME
HTML::FormFu::Filter::NonNumeric
=head1 DESCRIPTION
Remove all non-numeric characters.
=head1 AUTHOR
Carl Franks, C
=head1 LICENSE
This library is free software, you can redistribute it and/or modify it under
the same terms as Perl itself.
=cut