Help for this page

Select Code to Download


  1. or download this
    my $string= 'AAABBBCCCDD';
    my $i=0;
    my @words= grep $i=!$i,split /(?<=(.))(?!\1)/,$string;
    print join "\n",@words,'';