String subStringIfExist(final int start, final int end) => length > end ? substring(start, end) : this;