Help for this page

Select Code to Download


  1. or download this
    while ($firstrow =~ /(<\w>)/g) {
        push @columnpos, pos($firstrow) - length($1);
    }
    
  2. or download this
    push @columnpos, pos $firstrow while $firstrow =~ m{(?=<\w>)}g;