The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
docs: |
    Use L<substr()|perlfunc/"substr"> and L<index()|perlfunc/"index"> instead.

        my $strstr = substr( $haystack, index( $haystack, $needle ) );

    Or a regex:

        my ( $strstr ) = $haystack =~ /(\Q$needle\E.*$)/s;