Regex gurus, please help me here:
I need a regex that finds more than one space which does not end in a newline. For example consider the text below:
Column 1 Column 2 Column 3 Column 4
Column 1 Column 2 Column 3 Column 4
Regex should match the spaces between Column X, where X = 1, 2 or 3, but should not match the space after Column 4. Regex should also not match the single space between the word "Column" and its respective number.
I have tried \s+^(\n)
but it is not working