## This file is auto-generated (at 2008-11-24T04:21:25Z). ## Do not edit by hand! use strict; package Char::Class::Alphabet; our $VERSION = '1.01'; use Exporter; use vars qw(@EXPORT_OK @ISA $VERSION); @ISA = qw(Exporter); =head1 NAME Char::Class::Alphabet - Regular Expression Character Classes - C =cut sub import ($;@) { my ($self, @sub) = (shift, @_); for (@sub) { no strict 'refs'; *{'main::'.$_} = \&{$_}; } $Exporter::ExportLevel = 1; $self->SUPER::import (@_); $Exporter::ExportLevel = 0; } @EXPORT_OK = qw(InLatinTCVN6909_2001 InLatinTCVN6909 InLatinVietnamese); sub InLatinTCVN6909_2001 { < An alias for InLatinTCVN6909_2001. =item C =item C An alias for InLatinTCVN6909_2001. =back =cut =head1 EXAMPLE use Char::Class::Alphabet; if ($s =~ /\p{InLatinTCVN6909_2001}/) { print "Match!\n"; } =head1 LICENSE Copyright 2008 Wakaba This library and the library generated by it is free software; you can redistribute them and/or modify them under the same terms as Perl itself. =cut 1; ### Alphabet.pm ends here