常用字串方法

2021-08-28 01:49:26 字數 502 閱讀 2166

1、返回指定位置的字元

charat() 方法可返回指定位置的字元。

str.charat(指定位置)

2、替換字串中的乙個或者幾個字元

replace(被替換的字元,新替換的字元),若第二個引數為空也可用於刪除特定字元,

執行乙個全域性替換:

var str="mr blue has a blue house and a blue car";

var n=str.replace(/blue/g,"red");

輸出結果:

mr blue has a red house and a red car

執行乙個全域性替換, 忽略大小寫:

var str="mr blue has a blue house and a blue car";

var n=str.replace(/blue/gi, "red");

輸出結果:

mr red has a red house and a red ca

mysql常用字串 MYSQL常用字串函式寶典

mysql常用字串函式 想更進一步加強自己在查詢語句方面的能力,需要掌握常用函式。字串函式 1 concat s1,s2,sn 將s1,s2,sn串聯成乙個字串。exp root test 14 43 desc t1 field type null key default extra id int ...

js常用字串方法

eg var string can you help me?方法 例子 描述結果 string.substring 2,5 擷取指定字串索引為2至5 不包括5 間的的字串 n y string.substr 2,5 從指定字串索引為2的地方擷取數量為5的字串 n you string.indexof...

java API 常用字串方法

string s abc abc abc system.out.println 1位置字元 s.charat 1 system.out.println 2位置字元 s.charat 2 system.out.println 變大寫 s.tolowercase system.out.println 長...