in reply to Re: if contains
in thread if contains
works (it does find the '$' character - actually it DOES NOT, see below). However,print 'aha' if('ab$de' =~ /$/);
is looking for a 'b' at the end of the string, andprint 'aha' if('ab$de' =~ /b$/);
is looking for the contents of $d anywhere in the string, which it does find as $d is empty.print 'aha' if('ab$de' =~ /$d/);
Personally I'd consider index for a simple string search like this one.
Update: D'oh! Yes pfaut, that makes a LOT more sense. That should teach me something...
prints 'aha' because even an empty string has an end...
--
I'd like to be able to assign to an luser
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: if contains
by pfaut (Priest) on Jul 05, 2003 at 15:47 UTC |