Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    /^authentication\s+(\w*)(?{$authentication.= $1 . ' '})/ for @candidat
    +es;
    
    print $authentication;
    
  2. or download this
    for (@candidates) {
        $authentication.= $1 . ' ' if /^authentication\s+(\w*)/;
    }
    
  3. or download this
    open shared