sS dropFirstSpacedColumns(int n, S text) { S re = "^\\s*" + rep(n, "\\S+\\s*"); ret mapEachLine(text, line -> regexpReplace_direct(line, re, "")); }