字串內建方法

2021-10-07 10:18:03 字數 1082 閱讀 8517

concat() 字串拼接

var str1 =

'hello'

;var str2 =

'world'

;str1.

concat

(str2)

;

charat()、chartcodeat()

var s = str3.

charat

(index)

;var str4 =

'你好'

;var m = str4.

charcodeat

()

replace() 字串的替換

var str5 =

'aaabbbb'

;var str6 = str5.

replace

(a,b)

split() 將字串轉換成字串陣列

var str7 = '4567879

var str8 = str7.

split

('7'

)// '456','8','9'

indexof()、lastindexof()

var mystr = str.

indexof

(item)

;

match() 檢測字串中是否存在某乙個元素,如果存在就返回匹配的資訊,否則 返回 null

var mystr = str.

match

()

touppercase() 將字串轉換成大寫 ,tolowercase() 將字串轉換成小寫

substring()、slice() 字串的擷取

var mystr = str.

substring

(x[,y]

)

startswith() 用來判斷乙個字串是否以另乙個字串開頭

endswith() 用來判斷乙個字串是否以另乙個字串結尾

內建字串方法

python3 內建的字串方法如下所示 1capitalize 把字串的第乙個字母轉為大寫 2center width,fillchar 返回使用fillchar填充的字串,原始字串以總共width列為中心。3count str,beg 0,end len string 計算字串 現有多少次str或...

字串型別內建方法

string.capitalize 把字串的第乙個字元大寫 string.center width 返回乙個原字串居中,並使用空格填充至長度width 的新字串 string.count str,beg 0,end len string 返回str 在string 裡面出現的次數,如果beg 或者e...

字串內建方法練習

1 upper 將字串轉換成大寫 print abcd upper 2 find 找出,顯示 print abcd find cd 列印c所在位置的索引 3 split 用逗號分割字串 print a,b,c,d split 列印 a b c d 4 replace 替換 string python...