Help for this page

Select Code to Download


  1. or download this
    $_ = "same old show";
    
    ...
    foreach(/(\w)(\w)/g) {
        print "foreach: $_\n";
    }
    
  2. or download this
    $_ = "abc";
    
    ...
    foreach(/((.))/g) {
        print "foreach: $_\n";
    }