Help for this page

Select Code to Download


  1. or download this
    $foo= "string";
    (undef, $foo)=split //,$foo,2;
    print $foo;
    
  2. or download this
    $foo= "string";
    ($foo)=$foo=~/.(.*)/s;
    print $foo;