Reputation: 1805
I have String value which I take from firebase with the following format : [A7,B7,A#7,D7,A1]
When I print it in my application, it doesn't appear very clear. So I would like to hide the commas in the list or at least change their colors.
Any help would be appreciated.
Upvotes: 0
Views: 45
Reputation: 4081
You can use String manipulation to remove the commas:
myString.replaceAll(',',' ');
Upvotes: 1