移出头部指定 prefix 不包含不移出
prefix
String removePrefix(String prefix) { if (!startsWith(prefix)) return this; return substring(prefix.length); }