Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    for( ; $a = substr($string,$index,1) ; $index++) {
        print $a."\n";
    }
    
  2. or download this
        <?
        $string = "Hello World;
        echo $string{6};
        ?>