Help for this page

Select Code to Download


  1. or download this
    $line="123 456 789";
    @w=unpack('A3xA3xA3',$line);
    print "@w";
    
  2. or download this
    my @w = split /\s/, $line;