gpt4 book ai didi

javascript - 获取与 lodash 匹配模式的字符串结尾

转载 作者:行者123 更新时间:2023-12-02 13:58:52 27 4
gpt4 key购买 nike

如何使用 lodash 获取字符串末尾的最后一个整数(包括前面的破折号)?

'hello-world-bye-945'

所以最终结果只是-945

最佳答案

您可以使用String.prototype.lastIndexOf()String.prototype.slice()

var str = "hello-world-bye-945";
var match = str.slice(str.lastIndexOf("-"));
console.log(match);

关于javascript - 获取与 lodash 匹配模式的字符串结尾,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40520713/

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