|
|
| Perl-Sensitive Sunglasses | |
| PerlMonks |
Re: Check even numbers?by cees (Curate) |
| on Aug 07, 2006 at 05:02 UTC ( #565891=note: print w/ replies, xml ) | Need Help?? |
|
If you want to count the number of occurences of a single character in a string, then you should look at using 'tr'.
If you omit the second arg to tr, it knows you are not changing the string, but still counts up the occurences for you, which makes this very efficient. After that you just have to see if the number is positive ($count > 0) and use Grandfather's test above to see if it is even ( !($count & 1) ).
In Section
Seekers of Perl Wisdom
|
|
||||||||||||||||||||