When I do a Reader.ReadToEnd() it returns \n\r , How do I convert that String into array without '\n\r' , Even better, how do I give a signal that \n\r is a new index in the array?
"\n\r" String to Array C#
281 Views Asked by Zoki At
2
When I do a Reader.ReadToEnd() it returns \n\r , How do I convert that String into array without '\n\r' , Even better, how do I give a signal that \n\r is a new index in the array?
You can use the following:
This will remove all the new-line characters from the array and leave what is in between them as seperate elements.
The
StringSplitOptions
has enum values that determine whether empty (StringSplitOptions.RemoveEmptyEntries
) or white-space (StringSplitOptions.TrimEntries
) substrings should be omitted.