字串方法
在這裡插入**片
//定義乙個字串
var box = '我的世界'
//返回指定位置的字串
box.charat('2')
console.log(box.charat('2'))
//字串的長度
box.length
console.log(box.length)
//英文大小寫
var box2 = 'holle'
//大寫
box2.touppercase()
console.log(box2.touppercase())
//小寫
box2.tolowercase()
console.log(box2.tolowercase())
//字串連線
var box3 = '小明'
var box4 = box3.concat('你好')
console.log(box4)
//可以支援多個元素
var box5 = box4.concat('你','好')
console.log(box5)
//字串的查詢
box.indexof('我')
console.log(box.indexof('我'))
//字串的替換
box.replace('我','你') (第乙個是錯誤的,第二個是你要更改的)
console.log(box.replace('我','你'))
//字串按執行格式分組
var box5 = '我 的 世 界'
box5.split(' ')
var arr = box5.split(' ')
console.log(arr)
//字串擷取
//從第幾個開始,擷取到底幾個,(不包括左後乙個)
box.substring(2,3)
console.log(box.substring(2,3))
字串方法
find 方法可以在乙個較長的字串中查詢子字串,並返回子字串所在位置最左邊的索引。如果沒有找到則返回 1。hello,world.cold enough?find world 6 title hello,world.cold enough?title.find hello 0 title.find ...
字串方法
coding utf 8 字串也可以理解為乙個容器,也存在索引值,而字串中的每乙個字元可以理解為是一 個元素。1 len 獲取字串長度的方法 print 字串長度len len abcd 2 字串的取值 string abcdef r1 string 0 r2 string 1 print r1,r...
字串方法
一 字串的檢索方法 1 charat 2 charcodeat 3 indexof 4 lastindexof chatat 語法 stringobject.charat index 功能 返回stringobject中index位置的字元,如果沒有返回空。charcodeat 語法 stringo...