Help for this page

Select Code to Download


  1. or download this
    my $string = 'ABC' x 1_000_000;
    $string =~ s/(.)/( rand 10 < 1 ) ? '?' : $1/eg;
    
    print $string;