Help for this page

Select Code to Download


  1. or download this
    while (<>) {
        if (/^#ERRORS/ .. /^CELLS/) {
    ...
            ...; # other processing
        }
    }
    
  2. or download this
    if    (/match1/ .. /match2/) { doStage1(); }
    elsif (.. /match3/)          { doStage2(); }
    elsif (.. /match4/)          { doStage3(); }
    else                         { doOtherProcessing(); }