Help for this page

Select Code to Download


  1. or download this
    print $1 if $line =~ m/<!-- USER \d+ - ([^\s]+)/i;
    
  2. or download this
    print $1 if $line =~ m/<!-- USER \d+ - (\S+)/i;
    
  3. or download this
    my $user=undef;
    for (@site) {
    ...
      }
    }
    print "user = $user\n";