in reply to Re^2: using bits to print part of a string
in thread using bits to print part of a string
BTW: There is a problem with your substrwise test.
The first time through, $mask is undefined, so you set up @mask and set smask.
But on the second and subsequent times through, $mask is defined, so the non-state variable: @mask is left empty, so you don't do any actual work.
That probably explains the surprising apparent efficiency of substrwise in the figures McA posted.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: using bits to print part of a string.(bug)
by choroba (Cardinal) on Mar 17, 2013 at 08:05 UTC | |
|
Re^4: using bits to print part of a string.(bug)
by McA (Priest) on Mar 16, 2013 at 17:12 UTC | |
by BrowserUk (Patriarch) on Mar 16, 2013 at 20:56 UTC |