I need a code that splits string texts like:
string part1 = "Hi i study computer science in a college";
Then, I want it to be added into my linked list.
Node1: "Hi"
Node2: "i"
Node3: "study"
Node4: "computer"
...
I took a look but I couldn't find any source to do it. So can anyone help me?