diff options
author | Siep Kroonenberg <siepo@cybercomm.nl> | 2011-04-24 16:09:50 +0000 |
---|---|---|
committer | Siep Kroonenberg <siepo@cybercomm.nl> | 2011-04-24 16:09:50 +0000 |
commit | be4bfe8362d7eec07140f543f8d44120395de88b (patch) | |
tree | 5319d8f2eb70aee0c9767da1162f3f4beeb455bd /Master/tlpkg/tlperl0/lib/XML/LibXML/RegExp.pod | |
parent | 9d5bc14f41bbd9219da5d024b1d6a164b51c8525 (diff) |
2nd try to remove old tlperl0
git-svn-id: svn://tug.org/texlive/trunk@22185 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/tlperl0/lib/XML/LibXML/RegExp.pod')
-rwxr-xr-x | Master/tlpkg/tlperl0/lib/XML/LibXML/RegExp.pod | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/Master/tlpkg/tlperl0/lib/XML/LibXML/RegExp.pod b/Master/tlpkg/tlperl0/lib/XML/LibXML/RegExp.pod deleted file mode 100755 index 509de9f5ffd..00000000000 --- a/Master/tlpkg/tlperl0/lib/XML/LibXML/RegExp.pod +++ /dev/null @@ -1,71 +0,0 @@ -=head1 NAME - -XML::LibXML::RegExp - XML::LibXML::RegExp - interface to libxml2 regular expressions - -=head1 SYNOPSIS - - - - use XML::LibXML; - my $compiled_re = new XML::LibXML::RegExp('[0-9]{5}(-[0-9]{4})?'); - if ($compiled_re->isDeterministic()) { ... } - if ($compiled_re->matches($string)) { ... } - - $compiled_re = XML::LibXML::RegExp->new( $regexp_str ); - $bool = $compiled_re->matches($string); - $bool = $compiled_re->isDeterministic(); - -=head1 DESCRIPTION - -This is a perl interface to libxml2's implementation of regular expressions, -which are used e.g. for validation of XML Schema simple types (pattern facet). - -=over 4 - -=item new() - - $compiled_re = XML::LibXML::RegExp->new( $regexp_str ); - -The constructor takes a string containing a regular expression and returns a -compiled regexp object. - - -=item matches($string) - - $bool = $compiled_re->matches($string); - -Given a string value, returns a true value if the value is matched by the -compiled regular expression. - - -=item isDeterministic() - - $bool = $compiled_re->isDeterministic(); - -Returns a true value if the regular expression is deterministic; returns false -otherwise. (See the definition of determinism in the XML spec (L<<<<<< http://www.w3.org/TR/REC-xml/#determinism >>>>>>)) - - - -=back - -=head1 AUTHORS - -Matt Sergeant, -Christian Glahn, -Petr Pajas - - -=head1 VERSION - -1.70 - -=head1 COPYRIGHT - -2001-2007, AxKit.com Ltd. - -2002-2006, Christian Glahn. - -2006-2009, Petr Pajas. - -=cut |