字串常用的方法

2021-10-03 06:00:15 字數 601 閱讀 8362

轉化為小寫

tolowercase

str.tolowercase()

轉化為大寫

touppercase

str.touppercase()

返回指定位置下標的字元(0-str.length-1)

charat()

返回指定下標位置的字元的編碼 返回值是整數 不在範圍內返回nan

charcodeat()

指定的內容在字串第一次出現的位置 下標從0開始

indexof()

指定的內容在字串最後出現的位置

lastindexof()

返回的內容

slice(num)

1個數字的時候,返回從改數字開始到最後的所有內容

2個數字的時候,獲取的內容包含前者不包含後者

字串的擷取

substring(2,3) 2者之間的字元

從哪個位置開始,擷取多少長度的字串

substr(num1,num2)

分割為字串的陣列

split()

替換字元

replace()

以陣列的形輸出查詢的內容

math()

字串常用方法

字串常用方法 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 返回字串中檢索指定字元第一次出現的位...