JS字串 基礎

2021-08-20 08:16:40 字數 947 閱讀 7629

1.計算字串長度

var a ="abcd";

console.log(a.length);//4

2.查詢字串的某個位置

indexof:

var a = "helloworld";

a.indexof("hello");//0

indexof是找字母出現在字串的首位置

var a = "helloworld";

a.indexof("o");//4

用x.indexof(***)!=-1可以檢測你輸入的內容是否更資料所匹配

x:字串 ***:你輸入的內容

輸入其中的數字,窗台都會返回1,不是其中的數字窗台會返回0

match:

match用來查詢字母在字串出現的位置,如果找到了便反饋回來

var a ="hello world!";

var b ="wor";

a.match(b);//wor

var c ="123";

a.match(c) // null

charat:

charat是用來獲取字串的特定位置

格式為:str.charat(index)   index:具體位置

var a = "abc";

a.charat(1)    //b

3.修改字串位置

replace:

語法:stringobject.replace(repexp/sustr,replacement)

var a = "abcd";

console.log(a.replace(/c/,"z")) //abzd

JS字串常用基礎

js中 string 是一種基本的資料結構 常見屬性 length屬性用於返回字串的長度 var a zifuchuan console.log a.length 返回值為9,即為該字串長度常用方法 1 concat 拼接字串 例項 var a zifuchuan var b jichu conso...

js基礎 字串方法

var str1 xudandan 字串長度 var str1 length str1.length console.log str1 console.log str1 length 根據下標獲取單個字元 var str1 get1 str1 5 console.log str1 console.l...

js 字串減去字串 js 減去字串

redd.config裡面的時間戳和隨機字串是哪個簽名的時間戳和隨機字串 貼給你,你就明白拉。前台js獲取timestamp var d new date var timestamp date.parse d 當前日期減去1970年1月1號的值 後台獲取簽名,即signature,其中nocestr...