DB has like this data for hashtag in string type
#a#b#c#d#e
with this data, I want split each tag
so I code this
String tagToArray[] = output.getText("TAG", i).split("#");
but the result is
tagToArray[, a, b, c, d, e]
I want to remove first empty data what is the right way to splay data of hashtag?
.subtring(1)before yoursplit("#").split()if that is what is wanted.