So I'm trying to write a program where it reads in parts of a string per each line. For example the user can input:
Item car small
Item toy big
which comes across as this:
Item <item name> <size>
Basically, with this information, I store it into the program, so that whenever the user whats to access it later they can call it. The first string carindicates to the program, that the user is storing another item into the database. My question is, how do I read the input so that I can grab each section of the string item <item name> and <size>.