String trimStringLeft(String trim) { if (startsWith(trim)) { return substring(0, length - trim.length); } return this; }