Help for this page

Select Code to Download


  1. or download this
    $str = "The, Sample, sents, kdsjf, jdfhj";
    for (split(/,/, $str,3))
    {
    print ;
    }
    
  2. or download this
    $cnt =0;
    while($str =~ /(.*?),/g)
    ...
    $cnt++;
    print $&, if($cnt ==3);
    }