On developing an Android project I have got stacked in position
I don't want to describe because it is simple.
String str = "Physics,Chemistry,Biology"
This is my String and three queries are divided by comma. One of my method returns string like this.
So I want to make it to a string array. This will like that dividing comma based.
String[] strArr = {"Physics", "Chemistry", "Biology"};