Is there a way to do the following:
string str = "[A] [C] [E] [F]";
and then splitting the string down to a collection looking like:
List<string> myList = {"[A]", " ", "[C]", " ", "[E]", "[F]"}
In text: Is there a way to split the string by taking 3, then skipping 1. There is no ending space. Otherwise the following had worked fine: https://stackoverflow.com/a/1450797/14375615
I can't just add 1 to length, that just caused an error because the last item wasn't 4 chars long