Help for this page

Select Code to Download


  1. or download this
    my $nr = split (/\s+/, $_[0]);
    
  2. or download this
    $str="1:3:4:5";
    my $num=split(':',$str);
    print "Num:$num";