gpt4 book ai didi

javascript - 2 位数字的正则表达式

转载 作者:行者123 更新时间:2023-12-03 10:04:25 24 4
gpt4 key购买 nike

正则表达式不包含数字:98,10,为什么?

    <script>
var s = "asd asd 97 sasd3 54 asd98asd 10sasdal334";
document.write(s,"<br> 2 digit numbers: ",s.match(/\b[0-9]{2}\b/gm));
</script>

最佳答案

它不包括 98 和 10,因为您使用:\b

\b ... Assert position at a word boundary (position preceded or followed—but not both—by an ASCII letter, digit, or underscore)

关于javascript - 2 位数字的正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30426298/

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