in reply to Extract string after removing the substring

Here’s another way:

If you don’t need the original string anymore, just give an empty string as the REPLACEMENT argument to substr:

1:26 >perl -E " $string = qq[ATATTTATATTAT]; say $string; $removed = +substr($string, 0, 3, q[]); say $removed; say $string; " ATATTTATATTAT ATA TTTATATTAT 1:30 >

Hope that helps,

Athanasius <°(((><contra mundum

Replies are listed 'Best First'.
Re^2: Extract string after removing the substring
by viktor (Acolyte) on Oct 24, 2012 at 15:37 UTC
    thanks!!