Help for this page

Select Code to Download


  1. or download this
    my $string = 'ID13';
    say scalar( $string =~ s/\d+// );
    
  2. or download this
    my $string = 'ID13';
    say join('', grep( /[A-Za-z]/, split('',$string) ) );