Help for this page

Select Code to Download


  1. or download this
    my $test = "25/May/2011 16:19:02,0,0,4,0.04,5,1,0.08,8.5,,,,,,,,";
    my @test = split /,/, $test;
    foreach (@test){printf "!%s!\n", $_;}
    
  2. or download this
    my $test = "25/May/2011 16:19:02,0,0,4,0.04,5,1,0.08,8.5,,,,,,,,4";
    my @test = split /,/, $test;
    foreach (@test){printf "!%s!\n", $_;}
    
  3. or download this
    my $test = "25/May/2011 16:19:02,0,0,4,0.04,5,1,0.08,8.5,,,,,,,,4,";
    my @test = split /,/, $test;
    foreach (@test){printf "!%s!\n", $_;}