嗨,我很难将 php 中的 preg 替换转换为 jquery 替换....我使用的代码在下面给出...正则表达式不是强项...
dcis_ccnum="3433-4343-3434-3434";
dcis_ccnum.replace(/(?!^.?)[0-9](?!(.){0,3}$)/, '*');
alert(dcis_ccnum);
警报给我的是 3433-4343-3434-3434 它应该给我的是 3* -*- ***-3434。
php代码运行良好
echo $dcis_ccnum1=preg_replace('/(?!^.?)[0-9](?!(.){0,3}$)/', '*', '3433-4343-3434-3434');
有人可以让我知道我做错了什么吗?
谢谢