JS操作String物件的方法

2021-10-23 02:57:38 字數 749 閱讀 3272

js操作string物件的方法

charat(index):返回指定索引處的字串

charcodeat(index):返回指定索引處的字元的unicode的值

concat(str1,str2,...):連線多個字串,返回連線後的字串的副本

fromcharcode():將unicode值轉換成實際的字串

indexof(str):返回str在父串中第一次出現的位置,若沒有則返回-1

lastindexof(str):返回str在父串中最後一次出現的位置,若沒有則返回-1

match(regex):搜尋字串,並返回正規表示式的所有匹配

replace(str1,str2):str1也可以為正規表示式,用str2替換str1

search(regex):基於正規表示式搜尋字串,並返回第乙個匹配的位置

slice(start,end):返回字元索引在start和end(不含)之間的子串

split(sep,limit):將字串分割為字元陣列,limit為從頭開始執行分割的最大數量

substr(start,length):從字元索引start的位置開始,返回長度為length的子串

substring(from,to):返回字元索引在from和to(不含)之間的子串

tolowercase():將字串轉換為小寫

touppercase():將字串轉換為大寫

valueof():返回原始字串值

js的String物件方法

1 tolowercase 把字串轉為小寫,返回新的字串。var str hello world var str1 str.tolowercase console.log str hello world console.log str1 hello world2 touppercase 把字串轉為大...

js的String物件方法使用

1 tolowercase 把字串轉為小寫,返回新的字串。var str hello world var str1 str.tolowercase console.log str hello world console.log str1 hello world2 touppercase 把字串轉為大...

JS中String物件的常用方法

1 charcodeat方法返回乙個整數,代表指定位置字元的unicode編碼。strobj.charcodeat index 說明 index將被處理字元的從零開始計數的編號。有效值為0到字串長度減1的數字。如果指定位置沒有字元,將返回nan。例如 var str abc str.charcode...