常用方法:
1) charat() 返回指定索引位置的字元;例:
var str='hello';
console.log(str.charat(4));
2) concat() 連線兩個或多個字串,返回連線後的字串(拼接);例:
var str='hello';
var s1=str.concat(s,s,s,s);
console.log(s1);
3) indexof() 返回字串中檢索指定字元第一次出現的位置,找不到返回-1;例:
var str='hello';
var index=str.indexof('l');
console.log(index);
4) lastindexof() 返回字串中檢索指定字元最後一次出現的位置;例:
var str='hello';
var index=str.lastindexof('l');
console.log(index);
5) replace() 替換與正規表示式匹配的子串,只替換第乙個;例:
var str='hello';
var str0=str.replace('h','*');
var str0=str.replace('l','*');
console.log(str0);
6)slice() 擷取字串,遵循前閉後開;例:
var str='hello world';
var s=str.slice(0,2);
console.log(s);
7)split() 把字串分割為子字串陣列;例:
var url=「
//求?後面的內容
var str='hello world hi';
var str="hello,world,lisi";
var str="username=lisi&pwd=123";
var arr=str.split('&');
var arr1=arr[0].split('=');
console.log(arr,arr1);
8)substr() 從起始索引號提取字串中指定數目的字元;例:
var str='helyyyylo';
var str1=str.substr(0,3);
console.log(s1);
9)substring() 提取字串中兩個指定的索引號之間的字元;例:
var str='helyyyylo';
var s1=str.substring(0,4);
console.log(s1);
10)tolocalelowercase() 根據主機的語言環境把字串轉換為小寫;例:
var str='helyyyylo';
var s1=str.tolowercase();
console.log(s1);
11)tolocaleuppercase() 根據主機的語言環境把字串轉換為大寫;例:
var str='helyyyylo';
var s1=str.touppercase();
console.log(s1);
構建字串及常用方法
1.構建乙個空的字串構建起 stringbuilder builder new stringbuilder 3.int length 返回構建器或緩衝器中的 單元數量 4.void setcharat int i,char c 將第i個 單元設定成 c 5.stringbuilder insert ...
字串及字串的方法
一 字串 js中的任何資料型別都可以當作物件來看。所以string既是基本資料型別,又是物件。二 宣告字串 var sstr 字串 var ostr new string 字串 三 字串屬性 1.length計算字串的長度 不區分中英文 var str hello world console.log...
字串常用方法
字串常用方法 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 在字串...