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?
matches slowly and incorrectlymy $x='http://www*perlmonks*org/'; my $y='http://www.perlmonks.org/'; sub{ if ($x =~ /^$y$/i) {} }
|
|---|