Help for this page

Select Code to Download


  1. or download this
    my @array = $string =~ /./g;
    
  2. or download this
    my @array = map /./g, $string;
    
  3. or download this
    my @array = split(//, $string);