gpt4 book ai didi

javascript - 将 preg_match 模式转换为 javascript 模式

转载 作者:行者123 更新时间:2023-11-30 06:04:08 25 4
gpt4 key购买 nike

任何人都可以帮助将此 php 正则表达式模式转换为 js 兼容模式吗?

$delimiter = "-";
$phone = "some number from the client";
var_dump(
preg_match($phone,"|^([0-9]{1,3}".$delimiter."[0-9]{1,4}".$delimiter."[0-9]{4,12}(#[0-9]{1,4})?)$|")
);

谢谢

最佳答案

var delimiter = "-",
phone = "8-989-895",
re = new RegExp("^[0-9]{1,3}"+delimiter+"[0-9]{1,4}"+delimiter+"[0-9]{4,12}(?:[0-9]{1,4})?$");
console.log(re.test(phone));

关于javascript - 将 preg_match 模式转换为 javascript 模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6175398/

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