I have a text line that is delimited by tabs and multiple spaces but not single spaces. I have found:
parsed = preg_split('/ +/', $line); // one or more spaces
which can a split a line with one or more spaces. Is there a regex for only more than 1 space but not exactly 1 space?