SYNOPSIS

    use Regexp::Common qw /URI/;

    while (<>) {
        /$RE{URI}{HTTP}/       and  print "Contains an HTTP URI.\n";
    }

DESCRIPTION

Provides a regex for an \s-1HTTP\s0 \s-1URI\s0 as defined by \s-1RFC\s0 2396 (generic syntax) and \s-1RFC\s0 2616 (\s-1HTTP\s0).

If \*(C`-scheme => P\*(C' is specified the pattern P is used as the scheme. By default P is \*(C`qr/http/\*(C'. \*(C`https\*(C' and \*(C`https?\*(C' are reasonable alternatives.

The syntax for an \s-1HTTP\s0 \s-1URI\s0 is:

"http:" "//" host [ ":" port ] [ "/" path [ "?" query ]]

Under \*(C`{-keep}\*(C', the following are returned: The entire \s-1URI\s0. The scheme. The host (name or address). The port (if any). The absolute path, including the query and leading slash. The absolute path, including the query, without the leading slash. The absolute path, without the query or leading slash. The query, without the question mark.

REFERENCES

[\s-1RFC\s0 2396]

Berners-Lee, Tim, Fielding, R., and Masinter, L.: Uniform Resource Identifiers (\s-1URI\s0): Generic Syntax. August 1998.

[\s-1RFC\s0 2616]

Fielding, R., Gettys, J., Mogul, J., Frystyk, H., Masinter, L., Leach, P. and Berners-Lee, Tim: Hypertext Transfer Protocol \*(-- \s-1HTTP/1\s0.1. June 1999.

RELATED TO Regexp::Common::URI::http…

Regexp::Common::URI for other supported URIs.

AUTHOR

Damian Conway ([email protected])

MAINTAINANCE

This package is maintained by Abigail ([email protected]).

BUGS AND IRRITATIONS

Bound to be plenty.

LICENSE and COPYRIGHT

This software is Copyright (c) 2001 - 2009, Damian Conway and Abigail.

This module is free software, and maybe used under any of the following licenses:

1) The Perl Artistic License. See the file COPYRIGHT.AL. 2) The Perl Artistic License 2.0. See the file COPYRIGHT.AL2. 3) The BSD Licence. See the file COPYRIGHT.BSD. 4) The MIT Licence. See the file COPYRIGHT.MIT.