猿问

正则匹配名字为多种情况星号如何操作

1 杨名 》 杨*
2 胡欣欣 》 胡**

凤凰求蛊
浏览 1243回答 3
3回答

呼如林

var arr=[&nbsp; &nbsp; &nbsp; &nbsp; '杨名',&nbsp; &nbsp; &nbsp; &nbsp; '胡欣欣',&nbsp; &nbsp; &nbsp; &nbsp; '司徒娃娃啊'&nbsp; &nbsp; ]&nbsp; &nbsp; var reg=/(?<=.)./g;&nbsp; &nbsp; arr=arr.map(function(item){&nbsp; &nbsp; &nbsp; &nbsp; return item.replace(reg,'*');&nbsp; &nbsp; })&nbsp; &nbsp; console.log(arr);

偶然的你

str.replace(/(.)(.*)/,(_, $1, $2) => $1 + '*'.repeat($2.length))
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答