Help for this page

Select Code to Download


  1. or download this
    perl -e '
    @foo=('a','b','c', 'd', 'e', 'f', 'g', 'h', 'i'); 
    $str = join("",@foo); 
    $idx = index($str,'g'); 
    print "$str-$idx\n";'
    
  2. or download this
    abcdefghi-6