Help for this page

Select Code to Download


  1. or download this
    my @chars = split //, $string;
    
  2. or download this
    foreach my $char (split //, $some_string)
    {
    ...
                     $char = "|";
            }
    }
    
  3. or download this
    $string = join("", @chars);