I need to count the number of tabs between words in the string
string s = "DATE\t\t\tVERSION\t\tAUTHOR\t\t\t\t\tCOMMENTS";
int TabsDateVersion; //number of tabs between "Date" and "Version"
int TabsVersionAuthor; //number of tabs between "Version" and "Author"
int tabsAuthorComments; //number of tabs between "Author" and "Comments"
Note: words are only separated by one or more tabs.
Any idea how to do this in C#, so I have 3 different counts?