Help for this page

Select Code to Download


  1. or download this
    (@entry[0..8]) = split(/:/,$_);
    $newentry = join(":", @entry[0..8]);
    
  2. or download this
    @entry = split /:/; # Automagically uses $_.
    $newentry = join (":", @entry[0..8]);