21:08 >perl -wE "my $x = '1 SW PLT SLAC 6 PCS '; $x =~ s/\d(?!\d);?//g; say $x;"
1 SW PLT SLAC 6 PCS
21:08 >perl -wE "my $x = '1 SW PLT SLAC 6 PCS &'; $x =~ s/\d(?!\d);?//g; say $x;"
1 SW PLT SLAC 6 PCS &
21:09 >perl -wE "my $x = '1 SW PLT SLAC 6 PCS '; $x =~ s/\d(?!\d);?//g; say $x;"
1 SW PLT SLAC 6 PCS
21:09 >