I have a lib ".a" file, where it contents some value. I am able to read the contents.But I want replace the space with the Comma(,) and remove the first value in it.
For Example if my .a file Contents the following data,
1 2 3
4 5 6
I want the Output in the following way,
2,3
5,6
So i want to remove the first value from each string and want to replace the Space between the second and third values with a Comma(,).How can I do this.