Recently I downloaded a source (LevBot) and then I see this line:
} elsif($text =~ /^slaps $levbot_nick/i) {
- But what
/^and/ido? - Why to use they?
I think this is regular expression, I'm right?
Other flags possible are:
|
|||||||||||||||||||
|
|
Yes, this is a regular expression.
|
|||
|
|
|
Yes. See the perlre documentation. Briefly, |
|||
|
|
|
Thats a regular expression
/^ means starts with (actually ^ alone) /i means ignore case (i alone after / /) first and last / slashes are boundary of regex |
|||
|
|
perldoc perlrequickfor a reasonably gentle introduction to regular expressions in Perl. It's a big subject, but this will get you started. perldoc.perl.org/perlrequick.html – Telemachus Dec 9 '09 at 14:01