I have a string that reads "blah blah @~@ blah blah @~@ blah blah @~@"
How could I make it so that it creates a variable(string) for each '@~@' that feature in the string?
In this example I would end up with three variables - split1, split2 and split3
string.split('@~@')