美文网首页
js字符串脱敏

js字符串脱敏

作者: 此行欲上天 | 来源:发表于2019-01-22 00:01 被阅读0次
const getStr = (str, startIndex, endIndex, code) => {
    let sliceStr = str.slice(startIndex, endIndex)
    let replaceStr = ''
    let len = sliceStr.length
    let i = -1
    while(++i < len) {
      replaceStr += code
    }
    return str.replace(sliceStr, replaceStr)
  }

相关文章

网友评论

      本文标题:js字符串脱敏

      本文链接:https://www.haomeiwen.com/subject/mcjkjqtx.html