| HTML-Widget documentation | Contained in the HTML-Widget distribution. |
HTML::Widget::Constraint::Printable - Printable Constraint
my $c = $widget->constraint( 'Printable', 'foo' );
Printable Constraint.
Provides a regex to validate printable characters.
Sebastian Riedel, sri@oook.de
This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself.
| HTML-Widget documentation | Contained in the HTML-Widget distribution. |
package HTML::Widget::Constraint::Printable; use warnings; use strict; use base 'HTML::Widget::Constraint::Regex';
sub regex {qr/^([[:print:]]*)$/}
1;