Help for this page

Select Code to Download


  1. or download this
    while ($string=~m{<(ths|193)>|\.}g) {
                $count=$count+($tbsz * 0.25);
            }
    
  2. or download this
    my %factor;
    $factor{ths} = $factor{193} = 0.25;
    ...
        $count += $factor{$1};
    }
    $count *= $tbsz;
    
  3. or download this
    my $charclass = join "", grep {1 == length} keys %factor;