in reply to Re: Number of bits, length of RegExp
in thread Number of bits, length of RegExp
I wouldn't have let tr delete anything - just count the number of ones and then test that number for oddness. So I'd say this as $is_odd = $foo =~ tr/1// & 1; $is_even = $foo =~ tr/1// ^ 1;. This only tests bit zero's value and in theory is speedy. I dunno if it actually is.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Number of bits, length of RegExp
by Improv (Pilgrim) on Apr 21, 2003 at 15:02 UTC |