Help for this page

Select Code to Download


  1. or download this
    substr( $char, 5, -5, "" );   # In-place
    
  2. or download this
    my $output = substr( $char, 0, 5 ) . substr( $char, -5 );