#1.字串所有方法
charat(index) 返回下標處的字元
2)charcodeat(index) 返回下標處的unicode編碼 國際統一編碼標識 a 97 a—65 0–48
3)string.fromcharcode(34345) 將unicode編碼 轉成字串
indexof(字元) 返回字元首次出現的位置 未找到返回-1
5)lastindexof(字元) 返回字元最後出現的位置 未找到返回-1
6)concat(str) 連線乙個或多個字串
7)slice(start,end) 從start開始下標 提取字串到結束下標 返回新的字串 留頭不留尾
8)substr(index,num) 從下標位置擷取num個字串 substr(index) 傳乙個下標 擷取到最後
9)substring(start,end) 從開始下標擷取到結束下標 留頭不留尾
10)split("") 用特定字元將字串分割成陣列
11)tolowercase() 字串轉小寫
12)touppercase() 字串轉大寫
13)search(「a」) 搜尋字元a 在字串中的位置 返回下標 未找到返回-1
14)replace(要替換的字元,替換字元) 通過字元或正則 找到符合規則的字元 並替換
15)trim() 去除字串首尾的空格
16)includes(「子串」) 判斷字串中是否包含某個子串
17)match() 通過字元或正則規則 匹配字串 匹配回來的符合規則的字元 存放到陣列中
舉例說明
python str 字串的所有方法
author huang date 2017 11 28 字串 print hello 3 print hello world 2 print llo in hello world print 123 in 1232,123,345 print huang is a good teacher pri...
String所有方法
char charat int index 返回指定索引處的 char 值。int compareto object o 把這個字串和另乙個物件比較。int compareto string anotherstring 按字典順序比較兩個字串。int comparetoignorecase stri...
List的所有方法
list的用法 list包括list介面以及list介面的所有實現類。因為list介面實現了collection介面,所以list介面擁有collection介面提供的所有常用方法,又因為list是列表型別,所以list介面還提供了一些適合於自身的常用方法。list的方法 add int index...