Help for this page

Select Code to Download


  1. or download this
        my $scalar = list function();
    
  2. or download this
    my $n = () = $string =~ m/(pattern)/g;
    
  3. or download this
    my @useless = $string =~ m/(pattern)/g;
    my $n = @useless;
    
  4. or download this
    my $n = list $string =~ m/(pattern)/g;