Help for this page

Select Code to Download


  1. or download this
        map { push (@status, $_)    }
        map { split(/\n/,$_)        } $raw_data;
    
  2. or download this
        @status = split /\n/, $raw_data;
    
  3. or download this
    foreach (split /\n/, $raw_data) {
        ...
    }