- From: Bjoern Hoehrmann <derhoermi@gmx.net>
- Date: Thu, 26 Dec 2002 20:47:53 +0100
- To: www-archive@w3.org
Using
<http://search.cpan.org/author/GAAS/URI-1.22/URI.pm#COMMON_METHODS>
in a Perl program
#!perl -w
use strict;
use warnings;
use URI;
my $uri1 = URI->new("http://www.example.org/%61");
my $uri2 = URI->new("http://www.example.org/a");
print "equal" if $uri1->eq($uri2);
prints "equal".
Received on Thursday, 26 December 2002 14:47:33 UTC