Hi,
if I am reading from a text, and I only want the words , what should I do?
for example, "Hi, I am a boy."
and I only want Hi I am a boy.
is there a easy way to do it?
or I have to check it every time?
I want to read everything with out punctuation and numbers.
And I want to put the words in a string array.
for example, "Hi, I am a boy."
the first time I read will be : "Hi,
the second time I read will be : I
so do I have to check the end and the beginning every time I read?