I would like to convert a String into an Array. My string looks like this:
First-Second-Third-Fourth-Fifth-Sixth
and my Array should look like this:
["First", "Second", "Third", "Fourth", "Fifth", "Sixth"]
Is there any way to do that?
I would like to convert a String into an Array. My string looks like this:
First-Second-Third-Fourth-Fifth-Sixth
and my Array should look like this:
["First", "Second", "Third", "Fourth", "Fifth", "Sixth"]
Is there any way to do that?