.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "Regexp::Common::URI::news 3" .TH Regexp::Common::URI::news 3 2023-07-25 "perl v5.38.0" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH NAME Regexp::Common::URI::news \-\- Returns a pattern for file URIs. .SH SYNOPSIS .IX Header "SYNOPSIS" .Vb 1 \& use Regexp::Common qw /URI/; \& \& while (<>) { \& /$RE{URI}{news}/ and print "Contains a news URI.\en"; \& } .Ve .SH DESCRIPTION .IX Header "DESCRIPTION" .ie n .SS $RE{URI}{news} .el .SS \f(CW$RE\fP{URI}{news} .IX Subsection "$RE{URI}{news}" Returns a pattern that matches \fInews\fR URIs, as defined by RFC 1738. News URIs have the form: .PP .Vb 1 \& "news:" ( "*" | group | article "@" host ) .Ve .PP Under \f(CW\*(C`{\-keep}\*(C'\fR, the following are returned: .ie n .IP $1 4 .el .IP \f(CW$1\fR 4 .IX Item "$1" The complete URI. .ie n .IP $2 4 .el .IP \f(CW$2\fR 4 .IX Item "$2" The scheme. .ie n .IP $3 4 .el .IP \f(CW$3\fR 4 .IX Item "$3" The part of the URI following "news://". .ie n .SS $RE{URI}{NNTP} .el .SS \f(CW$RE\fP{URI}{NNTP} .IX Subsection "$RE{URI}{NNTP}" Returns a pattern that matches \fINNTP\fR URIs, as defined by RFC 1738. NNTP URIs have the form: .PP .Vb 1 \& "nntp://" host [ ":" port ] "/" group [ "/" digits ] .Ve .PP Under \f(CW\*(C`{\-keep}\*(C'\fR, the following are returned: .ie n .IP $1 4 .el .IP \f(CW$1\fR 4 .IX Item "$1" The complete URI. .ie n .IP $2 4 .el .IP \f(CW$2\fR 4 .IX Item "$2" The scheme. .ie n .IP $3 4 .el .IP \f(CW$3\fR 4 .IX Item "$3" The part of the URI following "nntp://". .ie n .IP $4 4 .el .IP \f(CW$4\fR 4 .IX Item "$4" The host and port, separated by a colon. If no port was given, just the host. .ie n .IP $5 4 .el .IP \f(CW$5\fR 4 .IX Item "$5" The host. .ie n .IP $6 4 .el .IP \f(CW$6\fR 4 .IX Item "$6" The port, if given. .ie n .IP $7 4 .el .IP \f(CW$7\fR 4 .IX Item "$7" The group. .ie n .IP $8 4 .el .IP \f(CW$8\fR 4 .IX Item "$8" The digits, if given. .SH REFERENCES .IX Header "REFERENCES" .IP "\fB[RFC 1738]\fR" 4 .IX Item "[RFC 1738]" Berners-Lee, Tim, Masinter, L., McCahill, M.: \fIUniform Resource Locators (URL)\fR. December 1994. .SH "SEE ALSO" .IX Header "SEE ALSO" Regexp::Common::URI for other supported URIs. .SH AUTHOR .IX Header "AUTHOR" Damian Conway (damian@conway.org) .SH MAINTENANCE .IX Header "MAINTENANCE" This package is maintained by Abigail (\fIregexp\-common@abigail.be\fR). .SH "BUGS AND IRRITATIONS" .IX Header "BUGS AND IRRITATIONS" Bound to be plenty. .SH "LICENSE and COPYRIGHT" .IX Header "LICENSE and COPYRIGHT" This software is Copyright (c) 2001 \- 2017, Damian Conway and Abigail. .PP This module is free software, and maybe used under any of the following licenses: .PP .Vb 4 \& 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 License. See the file COPYRIGHT.BSD. \& 4) The MIT License. See the file COPYRIGHT.MIT. .Ve