1. 字符串首尾补全长度 padStart()、padEnd()
str.padStart(len, '要补的字符串') // 够len位不补全,不够首端补字符串
str.padEnd(len, '要补的字符串')
'2'.padStart(2,'0') // '02'
'21'.padStart(2,'0') // '21'
'2'.padEnd(2,'#') //'2#'
2. 检测字符串是否以指定的子字符串开始 startsWith()
str.startsWith(searchvalue,start)
- searchvalue:必需,要查找的字符串。start:可选,从索引为几开始查找
- 返回值:true/false
- 注意:该方法对大小写敏感
"Hello world, welcome to the Runoob.".startsWith('Hello') //true
"Hello world, welcome to the Runoob.".startsWith('hello') //false
"Hello world, welcome to the Runoob.".startsWith('world',6) //true