Regexp::Common::URI::ftp -- Returns a pattern for FTP URIs. |
Regexp::Common::URI::ftp -- Returns a pattern for FTP URIs.
use Regexp::Common qw /URI/;
while (<>) { /$RE{URI}{FTP}/ and print "Contains an FTP URI.\n"; }
Returns a regex for FTP URIs. Note: FTP URIs are not formally defined. RFC 1738 defines FTP URLs, but parts of that RFC have been obsoleted by RFC 2396. However, the differences between RFC 1738 and RFC 2396 are such that they aren't applicable straightforwardly to FTP URIs.
There are two main problems:
Furthermore, RFC 1738 allows three values for the type specifier, A, I and D (either upper case or lower case). However, the internet draft about FTP URIs [DRAFT-FTP-URL] (which expired in May 1997) notes the lack of consistent implementation of the D parameter and drops D from the set of possible values. We follow this practise; however, RFC 1738 behaviour can be archieved by using the -type = ``[ADIadi]''> parameter.
FTP URIs have the following syntax:
"ftp:" "//" [ userinfo "@" ] host [ ":" port ] [ "/" path [ ";type=" value ]]
When using {-password}, we have the syntax:
"ftp:" "//" [ user [ ":" password ] "@" ] host [ ":" port ] [ "/" path [ ";type=" value ]]
Under {-keep}
, the following are returned:
undef
.
$Log: ftp.pm,v $ Revision 2.101 2004/06/09 21:42:48 abigail POD nits
Revision 2.100 2003/02/10 21:06:40 abigail ftp URI
the Regexp::Common::URI manpage for other supported URIs.
Damian Conway (damian@conway.org)
This package is maintained by Abigail (regexp-common@abigail.nl).
Bound to be plenty.
Copyright (c) 2001 - 2003, Damian Conway. All Rights Reserved. This module is free software. It may be used, redistributed and/or modified under the terms of the Perl Artistic License (see http://www.perl.com/perl/misc/Artistic.html)
Regexp::Common::URI::ftp -- Returns a pattern for FTP URIs. |