awk command to return only field with a number in it

What is an awk command to print only fields with a number in it??

Input file.......

S,S,S,S,S,S,S,S,S
001S,S,S,S,S,S,S,S,S
00219S,23S,24S,43S,47S,S,S,S,S
00319S,10S,23S,41S,43S,47S,S,S,S
00423S,41S,43S,46S,47S,S,S,S,S
00510S,23S,24S,43S,46S,S,S,S,S
00610S,23S,43S,46S,47S,S,S,S,S
00743S,46S,10S,23S,42S,47S,S,S,S

And as an output I want

001S
00219S,23S,24S,43S,47S,
00319S,10S,23S,41S,43S,47S
00423S,41S,43S,46S,47S
00510S,23S,24S,43S,46S
00610S,23S,43S,46S,47S
00743S,46S,10S,23S,42S,47S

It would be more than just a command. Why does it have to be AWK, have you been working on it with AWK, already? What have you tried? Where are you having problems with?

In addition to showing us what you have tried to solve your problem, please also explain in more detail why most alphabetic fields are deleted, but one of the alphabetic fields at the end of the 3rd input line (2nd output line) in your samples was converted to an empty field (with the trailing comma)???

What should happen if there is a leading alphabetic field in your input file followed by a field that contains a numeric character. Should there be a leading comma in the output or not?