A
Alberto
I have to store in a string array all the words of a text file. Actually I'm
doing this:
string [] v = text.Split(new char[] { ' ', '\n', '\t', '\r'})
but it doesn't work fine. When a new line is found the split method returns
two spaces.
How can I do fix it?
Thank you
doing this:
string [] v = text.Split(new char[] { ' ', '\n', '\t', '\r'})
but it doesn't work fine. When a new line is found the split method returns
two spaces.
How can I do fix it?
Thank you