Help for this page
# 10 quoted chars my $string = 'ABABCABCAC';
# 7 quoted chars my $string = 'AB'.'ABC'x2.'AC';
# 8 quoted chars my $string = ('AB'x2).'CABCAC'x2;