Help for this page

Select Code to Download


  1. or download this
    my $string='aabbccddee';
    
  2. or download this
    push @row,$& while('aabbccddee'=~/\w{2}/g);
    
  3. or download this
    @row=('aa','bb','cc','dd','ee');