Help for this page

Select Code to Download


  1. or download this
    $x="12345";
    for ($x=~ /./g) {
      print $&;
    }
    print "\n";
    
  2. or download this
    $x="12345";
    while ($x=~ /./g) {
      print $&;
    }
    print "\n";