| FormValidator documentation | Contained in the FormValidator distribution. |
HTML::FormValidator::Filters - Basic set of filters available in an HTML::FormValidor profile.
In an HTML::Empberl page:
use HTML::FormValidator;
my $validator = new HTML::FormValidator( "/home/user/input_profiles.pl" );
my ( $valid, $missing, $invalid, $unknown ) = $validator->validate( \%fdat, "customer_infos" );
These are the builtin filters which may be specified as name in the filters and field_filters parameters of the input profile.
Remove white space at the front and end of the fields.
Runs of white space are replaced by a single space.
Remove non digits characters from the input.
Remove non alphanumerical characters from the input.
Extract from its input a valid integer number.
Extract from its input a valid positive integer number.
Extract from its input a valid negative integer number.
Extract from its input a valid decimal number.
Extract from its input a valid positive decimal number.
Extract from its input a valid negative decimal number.
Extract from its input a valid number to express dollars like currency.
Filters out characters which aren't valid for an phone number. (Only accept digits [0-9], space, comma, minus, parenthesis, period and pound [#].)
Transforms shell glob wildcard (*) to the SQL like wildcard (%).
Calls the quotemeta (quote non alphanumeric character) builtin on its input.
Calls the lc (convert to lowercase) builtin on its input.
Calls the uc (convert to uppercase) builtin on its input.
Calls the ucfirst (Uppercase first letter) builtin on its input.
HTML::FormValidator(3) HTML::FormValidator::Constraints(3)
Francis J. Lacoste <francis.lacoste@iNsu.COM>
Copyright (c) 1999,2000 iNsu Innovations Inc. All rights reserved.
This program is free software; you can redistribute it and/or modify it under the terms as perl itself.
| FormValidator documentation | Contained in the FormValidator distribution. |
# # Filters.pm - Common filters for use in HTML::FormValidator. # # This file is part of FormValidator. # # Author: Francis J. Lacoste <francis.lacoste@iNsu.COM> # # Copyright (C) 1999,2000 iNsu Innovations Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms same terms as perl itself. # use strict; package HTML::FormValidator::Filters;
sub filter_trim { my $value = shift; # Remove whitespace at the front $value =~ s/^\s+//g; # Remove whitespace at the end $value =~ s/\s+$//g; return $value; }
sub filter_strip { my $value = shift; # Strip whitespace $value =~ s/\s+/ /g; return $value; }
sub filter_digit { my $value = shift; $value =~ s/\D//g; return $value; }
sub filter_alphanum { my $value = shift; $value =~ s/\W//g; return $value; }
sub filter_integer { my $value = shift; $value =~ tr/0-9+-//dc; ($value) =~ m/([-+]?\d+)/; return $value; }
sub filter_pos_integer { my $value = shift; $value =~ tr/0-9+//dc; ($value) =~ m/(\+?\d+)/; return $value; }
sub filter_neg_integer { my $value = shift; $value =~ tr/0-9-//dc; ($value) =~ m/(-\d+)/; return $value; }
sub filter_decimal { my $value = shift; # This is a localization problem, but anyhow... $value =~ tr/,/./; $value =~ tr/0-9.+-//dc; ($value) =~ m/([-+]?\d+\.?\d*)/; return $value; }
sub filter_pos_decimal { my $value = shift; # This is a localization problem, but anyhow... $value =~ tr/,/./; $value =~ tr/0-9.+//dc; ($value) =~ m/(\+?\d+\.?\d*)/; return $value; }
sub filter_neg_decimal { my $value = shift; # This is a localization problem, but anyhow... $value =~ tr/,/./; $value =~ tr/0-9.-//dc; ($value) =~ m/(-\d+\.?\d*)/; return $value; }
sub filter_dollars { my $value = shift; $value =~ tr/,/./; $value =~ tr/0-9.+-//dc; ($value) =~ m/(\d+\.?\d?\d?)/; return $value; }
sub filter_phone { my $value = shift; $value =~ tr/0-9,().#- //dc; return $value; }
sub filter_sql_wildcard { my $value = shift; $value =~ tr/*/%/; return $value; }
sub filter_quotemeta { quotemeta $_[0]; }
sub filter_lc { lc $_[0]; }
sub filter_uc { uc $_[0]; }
sub filter_ucfirst { ucfirst $_[0]; } 1; __END__