您好,登錄后才能下訂單哦!
charAt(x)
charCodeAt(x)
concat(v1,v2..)
fromCharcode(c1,c2)
indexOf(substr, [start])
lastIndexOf(substr, [start])
match(regexp)
replace(regexp/substr, replacetext)
search(regexp)
slice(start, [end])
split(delimiter, [limit])
substr(start, [length])
substring(from, [to])
toLowerCase()
toUpperCase()
includes()
endsWith()
repeat()
valueOf()
trim()
1. charAt(x)
charAt(x)返回字符串中x位置的字符,下標(biāo)從 0 開始。
//charAt(x) var?myString?=?'jQuery?FTW!!!'; console.log(myString.charAt(7)); //output:?F 復(fù)制代碼
2.charCodeAt(x)
charCodeAt(x)返回字符串中x位置處字符的unicode值。
//charCodeAt(position) var?message="jquery4u" //alert?"113" alert(message.charCodeAt(1) 復(fù)制代碼
3.concat(v1,v2..)
concat() 方法用于連接兩個(gè)或多個(gè)字符串,此方法不改變現(xiàn)有的字符串,返回拼接后的新的字符串。
//concat(v1,?v2,..) var?message="Sam" var?final=message.concat("?is?a","?hopeless?romantic.") //alerts?"Sam?is?a?hopeless?romantic." alert(final) 復(fù)制代碼
4.fromCharcode(c1,c2)
fromCharcode(c1,c2)轉(zhuǎn)換一組Unicode值轉(zhuǎn)換為字符。
//fromCharCode(c1,?c2,...) console.log(String.fromCharCode(97,98,99,120,121,122)) //output:?abcxyz console.log(String.fromCharCode(72,69,76,76,79)) //output:?HELLO 復(fù)制代碼
5.indexOf(substr, [start])
indexOf方法搜索并(如果找到)返回字符串中搜索到的字符或子字符串的索引。如果沒有找到,則返回-1。Start是一個(gè)可選參數(shù),指定字符串中開始搜索的位置,默認(rèn)值為0。
//indexOf(char/substring) var?sentence="Hi,?my?name?is?Sam!" if?(sentence.indexOf("Sam")!=-1) alert("Sam?is?in?there!") 復(fù)制代碼
6.lastIndexOf(substr, [start])
lastIndexOf() 方法返回指定文本在字符串中最后一次出現(xiàn)的索引, 如果未找到,則返回-1。 “Start”是一個(gè)可選參數(shù),指定字符串中開始搜索的位置, 默認(rèn)值為string.length-1。
//lastIndexOf(substr,?[start]) var?myString?=?'javascript?rox'; console.log(myString.lastIndexOf('r')); //output:?11 復(fù)制代碼
7.match(regexp)
根據(jù)正則表達(dá)式在字符串中搜索匹配項(xiàng)。如果沒有找到匹配項(xiàng),則返回一個(gè)信息數(shù)組或null。
//match(regexp)?//select?integers?only var?intRegex?=?/[0-9?-()+]+$/;? ? var?myNumber?=?'999'; var?myInt?=?myNumber.match(intRegex); console.log(isInt); //output:?999 ? var?myString?=?'999?JS?Coders'; var?myInt?=?myString.match(intRegex); console.log(isInt); //output:?null 復(fù)制代碼
8.replace(regexp/substr, replacetext)
replace() 方法用于在字符串中用一些字符替換另一些字符,或替換一個(gè)與正則表達(dá)式匹配的子串。
//replace(substr,?replacetext) var?myString?=?'999?JavaScript?Coders'; console.log(myString.replace(/JavaScript/i,?"jQuery")); //output:?999?jQuery?Coders ? //replace(regexp,?replacetext) var?myString?=?'999?JavaScript?Coders'; console.log(myString.replace(new?RegExp(?"999",?"gi"?),?"The")); //output:?The?JavaScript?Coders 復(fù)制代碼
9.search(regexp)
search() 方法用于檢索字符串中指定的子字符串,或檢索與正則表達(dá)式相匹配的子字符串,如果找到,返回與 regexp 相匹配的子串的起始位置,否則返回 -1。
//search(regexp) var?intRegex?=?/[0-9?-()+]+$/;? ? var?myNumber?=?'999'; var?isInt?=?myNumber.search(intRegex); console.log(isInt); //output:?0 復(fù)制代碼
10.slice(start, [end])
slice() 方法可提取字符串的某個(gè)部分,返回一個(gè)新的字符串。包括字符串從 start 開始(包括 start)到 end 結(jié)束(不包括 end)為止的所有字符。
//slice(start,?end) var?text="excellent" text.slice(0,4)?//returns?"exce" text.slice(2,4)?//returns?"ce" 復(fù)制代碼
11.split(delimiter, [limit])
split() 方法用于把一個(gè)字符串分割成字符串?dāng)?shù)組,返回一個(gè)字符串?dāng)?shù)組返回的數(shù)組中的字串不包括 delimiter自身。 可選的“l(fā)imit”是一個(gè)整數(shù),允許各位指定要返回的最大數(shù)組的元素個(gè)數(shù)。
12.substr(start, [length])
substr() 方法可在字符串中抽取從 start 下標(biāo)開始的指定數(shù)目的字符。返回一個(gè)新的字符串,包含從 start(包括 start 所指的字符) 處開始的 length 個(gè)字符。如果沒有指定 length,那么返回的字符串包含從 start 到該字符串的結(jié)尾的字符。
//substr(from,?to) var?text="excellent" text.substr(0,4)?//returns?"exce" text.substr(2,4)?//returns?"cell" 復(fù)制代碼
13.substring(from, [to])
substring() 方法用于提取字符串中介于兩個(gè)指定下標(biāo)之間的字符,方返回的子串包括 start 處的字符,但不包括 stop 處的字符,to 可選,如果省略該參數(shù),那么返回的子串會(huì)一直到字符串的結(jié)尾。
//substring(from,?[to]) var?myString?=?'javascript?rox'; myString?=?myString.substring(0,10); console.log(myString) //output:?javascript 復(fù)制代碼
14.toLowerCase()
toLowerCase() 方法用于把字符串轉(zhuǎn)換為小寫。
//toLowerCase() var?myString?=?'JAVASCRIPT?ROX'; myString?=?myString.toLowerCase(); console.log(myString) //output:?javascript?rox 復(fù)制代碼
15.toUpperCase()
toUpperCase() 方法用于把字符串轉(zhuǎn)換為大寫。
//toUpperCase() var?myString?=?'javascript?rox'; myString?=?myString.toUpperCase(); console.log(myString) //output:?JAVASCRIPT?ROX 復(fù)制代碼
16. includes()
includes() 方法用于檢查字符串是否包含指定的字符串或字符。
//includes() var?mystring?=?"Hello,?welcome?to?edureka"; var?n?=?mystring.includes("edureka"); //output:?True 復(fù)制代碼
17. endsWith()
endsWith()函數(shù)檢查字符串是否以指定的字符串或字符結(jié)束。
//endsWith() var?mystr?=?"List?of?javascript?functions"; var?n?=?mystr.endsWith("functions"); //output:?True 復(fù)制代碼
18. repeat()
repeat() 構(gòu)造并返回一個(gè)新字符串,該字符串包含被連接在一起的指定數(shù)量的字符串的副本。
//repeat() var?string?=?"Welcome?to?Edureka"; string.repeat(2); //output:?Welcome?to?Edureka?Welcome?to?Edureka 復(fù)制代碼
19. valueOf()
valueOf() 方法返回一個(gè)String對(duì)象的原始值(primitive value),該值等同于String.prototype.toString()。
//valueOf() var?mystr?=?"Hello?World!"; var?res?=?mystr.valueOf(); //output:?Hello?World! 復(fù)制代碼
20. trim()
trim() 方法會(huì)從一個(gè)字符串的兩端刪除空白字符。在這個(gè)上下文中的空白字符是所有的空白字符 (space, tab, no-break space 等) 以及所有行終止符字符(如 LF,CR)
//trim() var?str?=?"?Hello?Edureka!?"; alert(str.trim());
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。