Help for this page

Select Code to Download


  1. or download this
    my $string = '   this is a string';
    $string =~ s/\G\s/:/g;
    print("$string\n");  # :::this is a string