Basically, in any given string, I want only numeric and decimal values retained. So, basically:
1a => 1
1a.2b => 1.2
1a.2b.3c => 1.2.3
^^ Just as those show, no matter how many decimals or numeric values, those are the only characters I want retained. Hope this clears it up just a bit.