小编典典

从字符串中删除前 3 个字符

all

删除字符串前 3 个字符的最有效方法是什么?

例如:

'apple' 更改为 'le'  
'a cat' 更改为 'at'  
'ab c' 更改为 'b c'

阅读 58

收藏
2022-07-29

共1个答案

小编典典

只需使用 substring:"apple".substring(3);将返回le

2022-07-29