gpt4 book ai didi

javascript - 匹配字符串的起始字符

转载 作者:行者123 更新时间:2023-12-02 17:06:51 24 4
gpt4 key购买 nike

我有这样的字符串:

/transaction/tran_id=123

我想匹配字符串的 /transaction/ 部分。如果是这样的话,

window.location.href = url;

其他

alert("Not URL");

我尝试使用str.match("^string")

最佳答案

if ( url.indexOf('/transaction/') === 0 )
window.location.href = url;

你不需要正则表达式,只需使用indexOf,如果索引为零,则URL以该字符串开头

关于javascript - 匹配字符串的起始字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25166567/

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