| HTML-FormFu documentation | Contained in the HTML-FormFu distribution. |
HTML::FormFu::Filter::NonNumeric - filter removing all non-numeric characters
Remove all non-numeric characters.
Carl Franks, cfranks@cpan.org
This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself.
| HTML-FormFu documentation | Contained in the HTML-FormFu distribution. |
package HTML::FormFu::Filter::NonNumeric; use Moose; extends 'HTML::FormFu::Filter::Regex'; sub match {qr/\D+/} __PACKAGE__->meta->make_immutable; 1; __END__