in reply to Re: How can i compare strings using non-case-sensitive comparisions?
in thread How can i compare strings using non-case-sensitive comparisions?

my $x='http://www*perlmonks*org/'; my $y='http://www.perlmonks.org/'; sub{ if ($x =~ /^$y$/i) {} }
matches slowly and incorrectly
  • Comment on Re: Answer: How can i compare strings using non-case-sensitive comparisions?
  • Download Code