static S dropFirstLine(S text) { int i = text.indexOf('\n'); ret i >= 0 ? text.substring(i+1) : ""; }