Help for this page

Select Code to Download


  1. or download this
    for (@models) {
    my @mfields   = split /:/;
    $_ = join ' ' => $mfields[0], $mfields[1];
    }
    
  2. or download this
    for (@models) {
    my @mfields   = split /:/, $_;
    $_ = join ( ' ',splice( @mfields, 0, 2));
    }