I am currently using this regex replace statement:
currentLine = Regex.Replace(currentLine, " {1,} \t \n", @" ");
It doesn't seem to be working.
I need a regular expression, that replaces white space(s), new line characters and/or tabs with a single white space.
Are there any other space characters, that I should have in mind ?