Help for this page

Select Code to Download


  1. or download this
    my @counts = map { length } $string =~ /1(0*)/g;
    
  2. or download this
    my @counts = map { length } $string =~ /1(?=(.*))/g;