JavaScript中有没有办法删除字符串的结尾?
我只需要保留字符串的前 8 个字符并删除其余字符。
const result = 'Hiya how are you'.substring(0,8); console.log(result); console.log(result.length);
您正在寻找 JavaScript 的String方法substring
String
substring
例如
'Hiya how are you'.substring(0,8);
它返回从第一个字符开始并在第 9 个字符之前结束的字符串 - 即“Hiya how”。
子字符串文档