gpt4 book ai didi

javascript - 如何编写一个表示 if ' string starts with BT ' 的正则表达式?

转载 作者:行者123 更新时间:2023-11-28 14:02:12 24 4
gpt4 key购买 nike

如何编写一个正则表达式来表示如果单词/字符串以字母“BT”开头?

这是我使用的代码:

    if(val.match(/^\S{5,}$/)){

if(val.match(/^BT/)){

alert('Unfortunately you cannot buy or sell registrations in the Auctions if you live in Northern Ireland');
return false;

}else{

postcode.val(val.slice(0, -3)+' '+val.slice(-3));
$('#Postcodelookup').fadeIn(300);

}
}else{...

任何帮助将不胜感激,因为我对使用正则表达式还很陌生,谢谢

最佳答案

您需要/\bBT/

关于javascript - 如何编写一个表示 if ' string starts with BT ' 的正则表达式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4397628/

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