【JavaScript】字串

kudo_sama發表於2020-12-28

字串

  1. 正常字串我們是用單引號或者雙引號
  2. 注意轉義字元
\'
\n
\t
\u#### Unicode字元
\x##   Ascll字元
  1. 多行字串編寫
//esc下面那個鍵
var msg = `
			hello
			world`
  1. 模板字串
let name = "kudo";
let age = 3;
let msg = `你好,${name}`
  1. 字串長度
str.length
  1. 字串不可變
  2. 大小寫轉換
str.toUpperCase()
str.toLowerCase()
  1. 獲取下標 indexOf()
  2. substring
str.substring(1,3) //擷取第2個到第3個字元

相關文章