字符串除了第一位和最后一位中间用*替换
Posted 武奘
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串除了第一位和最后一位中间用*替换相关的知识,希望对你有一定的参考价值。
$(".user-name").each(function(){
var userName = $(this).html().trim();
var _name = "";
var nameLength = userName.length;
if (nameLength > 2) {
var nameLength = nameLength - 2;
while (nameLength > 0) {
_name += "*";
nameLength--;
}
userName = userName.substr(0, 1) + _name + userName.substr(userName.length - 1, userName.length);
$(this).html(userName);
}
})
以上是关于字符串除了第一位和最后一位中间用*替换的主要内容,如果未能解决你的问题,请参考以下文章