I have a class where data of strings have been stored.
void testCallback(char *data)
{
NSLog(@"%s", data);
}
in the log it displays the following output,
1.00 2.00 3.00
4.00 5.00 6.00
But i need the output in the following manner,
2.00,3.00
5.00,6.00
so i want to remove first character and i want to replace the space between the 2nd and 3rd with the comma(,).How can i do this.
Already i answered Link Here