Help for this page

Select Code to Download


  1. or download this
    $string =~ s/\Q$substring//;
    
  2. or download this
    my $offset = index( $string, $substring );
    substr( $string, $offset, length $substring, '' ) if $offset > -1;