ES6學習第三節:字串的擴充套件

weixin_33670713發表於2019-01-10
  • 字串遍歷

for ... of

// 字串遍歷
const txt = 'www.coffeecola.cn'
for (var item of txt) console.log(item)
  • includes startsWith endsWith

includes():返回布林值,表示是否找到了引數字串。
startsWith():返回布林值,表示引數字串是否在原字串的頭部。
endsWith():返回布林值,表示引數字串是否在原字串的尾部。

// includes startsWith endsWith
console.log(txt.includes('coffeecola'))
console.log(txt.startsWith('www'))
console.log(txt.endsWith('cn'))
  • repeat

repeat方法返回一個新字串,表示將原字串重複n次。

// repeat
console.log(txt.repeat(0.1))
console.log(txt.repeat(2))
// 取整
console.log(txt.repeat(2.9))
  • padStart padEnd

字串補全長度的功能

// padStart padEnd
console.log(txt.padStart(txt.length + 8, 'https://'))
console.log(txt.padEnd(txt.length + 8, '/#/login'))
  • matchAll

Node v10.8.0不支援

var reg = /o/
console.log(txt.match(reg))
// Node不支援 v10.8.0
// console.log(txt.matchAll(reg));
var reg = /o/g
console.log(txt.match(reg))
  • 字串模板
var name = 'ChangLau'
var str = `
  \`Hello, my Name is ${name}\`
`
console.log(str)
var a = 1,
  b = 2
// 模板字串可以進行JS運算
console.log(`${a} add ${b} equals ${a + b}`)

相關文章