Subject: | Finds URIs that aren't URIs (IMHO) |
Hi,
here is an example, the smallest I could reproduce it with:
$ perl -wle'
use URI::Find;
my $finder = URI::Find->new(sub {
print "url/title: @_";
});
my $text = shift;
$finder->find(\$text);' '<foo bar=T:1>'
url/title: foobar=T:1 foobar=T:1
If I remove the <> braces or the colon or the 'T", it's not found any
more as a uri.
regards,
tina