gpt4 book ai didi

javascript - 如何返回字符串的最后两个字符以外的所有字符?

转载 作者:IT王子 更新时间:2023-10-29 03:10:54 26 4
gpt4 key购买 nike

id = '01d0';
document.write('<br/>'+id.substr(0,-2));

我如何获取像 '01d0 and get the 这样的字符串? 01`(除最后两个字符外的所有字符)?

在 PHP 中我会使用 substr(0,-2)但这在 JavaScript 中似乎不起作用。

我怎样才能让它工作?

最佳答案

你正在寻找 slice() (也就是 see MDC )

id.slice(0, -2)

关于javascript - 如何返回字符串的最后两个字符以外的所有字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6304473/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com