Help for this page

Select Code to Download


  1. or download this
    @a = ( 'a', 'x', 'z' ); # simplified array
    while(<>)
    {
       local $" = "";
       print if(/^[@a]{3}$/);
    }