- 1 charat/charcodeat
charat根據索引獲取指定位置的字元
charcodeat不僅僅獲取字元,它獲取的是字元對應的unicode編碼值(asc ll碼值)10進製
引數:索引
返回:字元或者對應的編碼
- 2 indexof / lastindexof
可以獲取字串在字串中第一次或者最後一次出現位置的索引,若有這個字元返回值大於等於0,不存在為-1
- 3 slice
str.slice(n,m)從索引n開始找到索引m處(不包含m),把找到的字元當作字串返回,
支援負數索引,用字串的總長度+負數索引做運算
- 4 substring
和slice語法一樣,唯一的區別在於:slice 支援負數索引,而substring不支援負數索引
-5 substr
str.substr(n,m)從索引n開始擷取m個字元 m是擷取的個數,和substring 一樣,第二個引數不傳。擷取到末尾,但是它支援第乙個索引為負數,負數也是總長度+負數索引
- 6 touppercase/tolowercase
實現字母的大小寫轉換 touppercase 小寫轉大寫 tolowercase 大寫轉小寫
- 7 split
和陣列中的join 相對應,陣列中的join是吧陣列每一項按照指定的連線符變為字串,而split是把字串按照指定的分隔符拆分成陣列中的每一項
- 8 replace
作用:替換字串中的原有字元
引數:原有字元,要替換新字元
返回:替換後的字串
字串常用方法
字串常用方法 public class 3 abc 5 int indexof string str 輸出字串2在字串1中的下標 system.out.println hello crl endswith crl 6 6int indexof string str,int fromindex 在字串...
字串常用方法
1 判斷型別 9 方法說明 string.isspace 如果 string 中只包含空格,則返回 true string.isalnum 如果 string 至少有乙個字元並且所有字元都是字母或數字則返回 true string.isalpha 如果 string 至少有乙個字元並且所有字元都是字...
字串常用方法
字串常用方法 method 描述charat 返回指定索引位置的字元 charcodeat 返回指定索引位置字元的 unicode 值 concat 連線兩個或多個字串,返回連線後的字串 fromcharcode 將字元轉換為 unicode 值 indexof 返回字串中檢索指定字元第一次出現的位...