tsmith2471
Newbie
- Oct 21, 2012
- 14
- 4
I need some help with my program. Write a function that takes a string of comma seperated values and returnd a string of tab seperated values.
This is not replacing the comma with a tab. Any suggestions?
Code:
String str = new String("Hello, BHW, how, are, you, today?");
str.replaceAll("," , " ");
This is not replacing the comma with a tab. Any suggestions?
Last edited: