删除字符串前 3 个字符的最有效方法是什么?
例如:
'apple' 更改为 'le' 'a cat' 更改为 'at' 'ab c' 更改为 'b c'
只需使用 substring:"apple".substring(3);将返回le
"apple".substring(3);
le