How do I compare two strings in Perl?
I am learning Perl, I had this basic question looked it up here on StackOverflow and found no good answer so I thought I would ask.
|
|
How do I compare two strings in Perl? I am learning Perl, I had this basic question looked it up here on StackOverflow and found no good answer so I thought I would ask.
|
||||||||||||
|
|
|
See perldoc perlop. Use |
||||||||||||
|
|
|
In addtion to Sinan Ünür comprehensive listing of string comparison operators, Perl 5.10 adds the smart match operator. The smart match operator compares two items based on their type. See the chart below for the 5.10 behavior (I believe this behavior is changing slightly in 5.10.1):
|
| +1 I love the smart match operator ;-) – Sinan Ünür Jul 24 at 13:15 | |
| It's not changing slightly: it's changing radically. Smart matching for anything un-simple is seriously broken. – brian d foy Jul 24 at 16:56 |
|
|
See |
|||
|
|
|
|
Perl has seperate string comparison and numeric comparison operators to help with the loose typing in the language. You should read perlop for all the different operators. |
||
|
|