Help for this page

Select Code to Download


  1. or download this
    my ( $output ) = $char =~ /(?<=^\S{5})(\S+)(?=\S{5}\z)/;
    
  2. or download this
    my ( $output ) = $char =~ /^.{5}(.*).{5}\z/s;
    
  3. or download this
    my $output = substr( $char, 5, -5 );