Help for this page

Select Code to Download


  1. or download this
    use 5.012;
    
    my $string = "---------xxxxxxxxxxxxxxx------yyyyyyyyyyyyyy--------";
    say $string;
    $string =~ s/(\A\-+|\-+$)/'?' x length $1/eg;
    say $string;
    
  2. or download this
    ---------xxxxxxxxxxxxxxx------yyyyyyyyyyyyyy--------
    ?????????xxxxxxxxxxxxxxx------yyyyyyyyyyyyyy????????