I have a long dictionary-like string that I want to segment and store. It is in the format:
WORDA (n.)
Definition.
WORDB (n.)
Definition.
I want to store the data in a list of the form:
{{"WORDA","n.","Definition."},{"WORDB","n.","Definition."}}
Is there any (simple) way to do this WITHOUT using regular expressions?
-Jesse