gpt4 book ai didi

javascript - 如何显示密码中的前四个字符并在其旁边显示星号?

转载 作者:行者123 更新时间:2023-12-01 01:45:33 29 4
gpt4 key购买 nike

我试图显示前四个字符并使用密码输入字段中的命名空间显示星号:

users.page.passChar = userInput => {
let emptyStr = "";
if (userInput) {
emptyStr = userInput.substring(3);
emptyStr.replace();
}
return emptyStr;
}

最佳答案

如果我正确理解您的问题,您想将星号替换为字符串末尾并仅显示前四个字符吗?

这应该是一个好的开始:

function passDisplay(userInput) {
let emptyStr = "";
if (userInput) {
emptyStr = userInput.substring(0, 4);
if (userInput.length > 3) {
emptyStr += Array(userInput.length - 4).fill('*').join('');
}
}
return emptyStr;
}
console.log(passDisplay("hunter2"));

关于javascript - 如何显示密码中的前四个字符并在其旁边显示星号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51996301/

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