js 格式化时间、字符串指定长度、随机字符串

时间:2025-01-16 13:07:02

格式化字符串长度

方法

    function formatWidth(str, width){
str += ''
if(str.length<width)
return formatWidth(''+str, width)
else
return str
}

测试代码

        a =
console.log(a,formatWidth(a,))
a =
console.log(a,formatWidth(a,))
a =
console.log(a,formatWidth(a,))

运行结果

js 格式化时间、字符串指定长度、随机字符串

获取格式化时间字符串

方法

    function timeFormat(inTime, formatStr, getDate){
formatStr = formatStr || 'Y-M-D H:m:S'
let weeks = ['日','一','二','三','四','五','六']
let formater = {
Y: inTime.getFullYear(),
M: formatWidth(inTime.getMonth()+,),
D: formatWidth(inTime.getDate(),),
H: formatWidth(inTime.getHours(),),
m: formatWidth(inTime.getMinutes(),),
S: formatWidth(inTime.getSeconds(),),
W: '星期'+weeks[inTime.getDay()]
}
for(let i in formater)
formatStr = formatStr.replace(i, formater[i])
return getDate ? new Date(formatStr) : formatStr
}

测试代码

        console.dir(timeFormat(new Date(), 'Y-M-D H:m:S'))
console.dir(timeFormat(new Date(), 'YMDHmS'))
console.dir(timeFormat(new Date(), 'Y H:m:S'))
console.dir(timeFormat(new Date(), 'Y-M-D'))

测试结果

js 格式化时间、字符串指定长度、随机字符串

随机字符串

方法

    function randomString(len) {
  len = len || ;
  var $chars = 'ABCDEFGHJKMNPQRSTWXYZabcdefhijkmnprstwxyz2345678'; /****默认去掉了容易混淆的字符oOLl,9gq,Vv,Uu,I1****/
  var maxPos = $chars.length;
  var pwd = '';
  for (i = ; i < len; i++) {
    pwd += $chars.charAt(Math.floor(Math.random() * maxPos));
  }
  return pwd;
}

测试代码

        console.log(randomString())
console.log(randomString())
console.log(randomString())
console.log(randomString())

测试结果

js 格式化时间、字符串指定长度、随机字符串