I have written many lines to a text file and I have divided each line into parts by putting three spaces between parts. Here is an example of a line :
1 khashayar home
Now I want to read and split each line by using
arraytobeprinted = ss.Split(' ');
but I get this error:
There are too many characters in character literals
How can I fix this ?
You can try String.Split Method (String[], StringSplitOptions) for the same result.