Help for this page

Select Code to Download


  1. or download this
            redo if ( @gArray && grep { /$rInt/ } @gArray );
    ...
            redo if ( @mArray && map { /$rInt/ } @mArray );
    ...
            redo if ( @sArray && $rInt ~~ @sArray );
    
  2. or download this
            redo if @gArray && grep /$rInt/, @gArray;
    ...
            redo if @mArray && map /$rInt/, @mArray;
    ...
            redo if @sArray && /$rInt/ ~~ @sArray;