What is the best way to take a large string like a line of text read from a file and break it up into smaller chunks. For example if I had the following txt file parts (not all of the strings are the same size)

The text file would look like:

Hi My name Is Dork
What Kinda Name Is That Moron

Now I want to take this file and read in the lines and divide the individual lines up into individual strings like this:

a = Hi
b = My
c = Name
d = Is
e = Dork

a = What
b = kinda
c = Name
d = Is
e = That
f = Moron

Perhaps this could be in an array?!?

Thanks,
Aaron