Hello guys.I need to read a text file which includes a paragraph of plain text.I need to put this paragraph in an array,where each array entry is one word.For example the text <I am superman> will be placed in the array like this:
Array[0]="I",Array[1]="am",Array[2]="superman"
Thanks in advance.