Help for this page

Select Code to Download


  1. or download this
    map {s/\\://g;$_}
    
  2. or download this
    map { (my $s = $_) =~ s/\\(.)/$1/sg; $s }
    
  3. or download this
    map {s/\\://g;$_}
    
  4. or download this
    map { my $s = $_; $s =~ s/\\(.)/$1/sg; $s =~ s/://g; $s }