How can I find the first substring until I find the first digit?
Example:
my $string = \'AAAA_BBBB_12_13_14\' ;
Result expected: \'AAA
perl -le '$string=q(AAAA_BBBB_12_13_14);$string=~m{(\D+)} and print $1' AAAA_BBBB_