Help for this page

Select Code to Download


  1. or download this
    $raw_data=<DATA>;
    while (<DATA>) {
    
    foreach ($raw_data) {
    
  2. or download this
    while (<DATA>) {
      my @new_data = split /ms/;
      # do stuff
    }