Help for this page

Select Code to Download


  1. or download this
    while(<$file>){
      my @fields = split ':';
      last if $fields[0] eq $userid;
    }
    
  2. or download this
    while(<$file>){
      last if /^$userid:/;
      # do whatever
    }