I would like to match rows of a table. There are no symbols which signal where one cell starts or ends but whitespace. Strings of characters with < 3 whitespace in between should be seen as cells.
An example row:
" here is a $$ cell here another cells I dont care about........."
This is my naive and invalid attempt in which I just want 2 cells:
\\s{5,}([^\\s{2,}]+)\\s{5,}([^\\s{2,}]+)\\s{5,}.*