Help for this page

Select Code to Download


  1. or download this
    while(<DATA>) {
        while(/\b$word\b/g) {
    ...
                scalar(split /\s+/, $`)+1,"\n";
        }
    }
    
  2. or download this
    Use of implicit split to @_ is deprecated
    
  3. or download this
        scalar(my @s = split /\s+/, $`)+1
    
  4. or download this
    while(<DATA>) {
        my @arr = ();
    ...
            join("\t",@arr) ,"\n"
                if @arr;
    }