Help for this page

Select Code to Download


  1. or download this
    # abababab
    # ----
    ...
    
    my $count = 0;
    ++$count while $string =~ /\Q$substr/g;
    
  2. or download this
    # abababab
    # ----
    ...
    
    local our $count = 0;
    $string =~ /\Q$substr\E(?{ ++$count })(?!)/;