Help for this page

Select Code to Download


  1. or download this
    foreach my $ix ( reverse 0 .. $#text ) {
        if ( not length $text[ $ix ] ) {
            splice @text, $ix, 1;
            splice @links, $ix, 1;
        }
    }
    
  2. or download this
    for ( my $ix = $#text; $ix >= 0; -- $ix ) {
        # same loop contents.
    }