in reply to Re^2: add elements to array at certain positions
in thread add elements to array at certain positions
The OP's example made it clear that no values from @a were to be skipped. $i should not increment each time, and even if it should, it should either be set to -1 before the 'loop', or incremented after the ternary. Your sample preincrements $i so $a[0] would always be skipped.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: add elements to array at certain positions
by juster (Friar) on Oct 30, 2008 at 16:56 UTC |