I have a text file that is tab-delimited. How can I separate this string into substrings for an array by detecting the tabs?
string s = "123\t456\t789"; string[] split = s.Split('\t');