I want a string that stores to pieces of info like this: and then you can say, there is a slash there, its separate.
String stuff = "First info/Last info";
String stuff = "First info/Last info";
stuff.split("/")
{"First info", "Last info"}
"Item 1:Item 2:Third item:The last item".split(":") //returns {"Item 1", "Item 2", "Third item", "The last item"}
"Item 1@*&Item 2@*&Third item@*&The last item".split("@*&") //returns {"Item 1", "Item 2", "Third item", "The last item"}