gpt4 book ai didi

javascript - 如何测试字符串是否以字符串列表结尾

转载 作者:行者123 更新时间:2023-12-04 13:15:03 28 4
gpt4 key购买 nike

我有一个字符串数组和另一个字符串,有没有一种简单的方法来测试我的单个字符串是否以字符串数组中的一个字符串结尾?

const strings = [
'foo',
'bar',
'test'
];

if ('hi, this is a test'.endsWith(...strings)) { // I know that this isn't right but this is the idea
console.log("String ends with one of the strings !");
}

最佳答案

Array.prototype.some() 怎么样?

if (strings.some(s => 'hi, this is a test'.endsWith(s))) {...}

关于javascript - 如何测试字符串是否以字符串列表结尾,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61333283/

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