Any ideas?
My program is a file validation utility and I have to read in a format file then parse out each line by a single space. But obviously, the person who wr
This is a duplicate of this question
however the answer is this (credit to Daok)
Regex regex = new Regex(@"[ ]{2,}"); tempo = regex.Replace(tempo, @" ");