I have a giant text document that looks sort of like this:
A,1,2,3
B,2,5,3
C,7,9,0
.
.
.
How would I write a program that would make the text document look like this:
1 2 3
2 5 3
7 9 0
.
.
.
(Basically the letters and the commas after the letter are removed, and all commas after the first number change into spaces)