Skip Menu |

This queue is for tickets about the URI-Find-Delimited CPAN distribution.

Report information
The Basics
Id: 2245
Status: resolved
Priority: 0/
Queue: URI-Find-Delimited

People
Owner: KAKE [...] cpan.org
Requestors: KAKE [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.01
Fixed in: (no value)



Subject: Finds erroneous URIs
perl -MURI::Find::Delimited -wle ' my $finder=URI::Find::Delimited->new( callback => sub { "[$_[2]]" } ); my $text = "http://www.foo.com/ blah blah style:font"; $finder->find(\$text); print $text' prints: [http://www.foo.com/] blah blah [style:font] However perl -MURI::Find -wle ' my $finder=URI::Find->new( sub { "[$_[1]]" } ); my $text = "http://www.foo.com/ blah blah style:font"; $finder->find(\$text); print $text' prints: [http://www.foo.com/] blah blah style:font