Help for this page

Select Code to Download


  1. or download this
       this is a string
    
  2. or download this
    :::this is a string
    
  3. or download this
    my $string = '   this is a string';
    # below replaces first whitespace char, leaves the rest
    $string =~ s/^\s/:/g;
    # below replaces first whitespace char, remotes the rest
    $string =~ s/^\s+/:/g;