Help for this page

Select Code to Download


  1. or download this
    $string = "thisisatest";
    for($x=0;$x<(length($string)-1);$x++){
    ...
      substr($temp,($x+1),1) = substr($string,$x,1);
      print $temp, "\n";
    }
    
  2. or download this
    htisisatest
    tihsisatest
    ...
    thisisaetst
    thisisatset
    thisisatets
    
  3. or download this
    ($_='jjjuuusssttt annootthheer
         pppeeerrrlll haaaccckkeer')=~y/a-z//s;print;