溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

怎么使用ES6字符串

發(fā)布時(shí)間:2021-11-02 16:28:41 來(lái)源:億速云 閱讀:150 作者:iii 欄目:web開(kāi)發(fā)

本篇內(nèi)容介紹了“怎么使用ES6字符串”的有關(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

字符串重復(fù)

repeat():返回新的字符串,表示將字符串重復(fù)指定次數(shù)返回。

console.log("Hello,".repeat(2));  // "Hello,Hello,"

如果參數(shù)是小數(shù),向下取整

console.log("Hello,".repeat(3.2));  // "Hello,Hello,Hello,"

如果參數(shù)是 0 至 -1 之間的小數(shù),會(huì)進(jìn)行取整運(yùn)算,0 至 -1 之間的小數(shù)取整得到 -0 ,等同于 repeat 零次

console.log("Hello,".repeat(-0.5));  // ""

如果參數(shù)是 NaN,等同于 repeat 零次

console.log("Hello,".repeat(NaN));  // ""

如果參數(shù)是負(fù)數(shù)或者 Infinity ,會(huì)報(bào)錯(cuò):

console.log("Hello,".repeat(-1));  
// RangeError: Invalid count value
console.log("Hello,".repeat(Infinity));  
// RangeError: Invalid count value

如果傳入的參數(shù)是字符串,則會(huì)先將字符串轉(zhuǎn)化為數(shù)字

console.log("Hello,".repeat("hh")); // ""
console.log("Hello,".repeat("2"));  // "Hello,Hello,"

字符串補(bǔ)全

padStart:返回新的字符串,表示用參數(shù)字符串從頭部(左側(cè))補(bǔ)全原字符串。
padEnd:返回新的字符串,表示用參數(shù)字符串從尾部(右側(cè))補(bǔ)全原字符串。
以上兩個(gè)方法接受兩個(gè)參數(shù),第一個(gè)參數(shù)是指定生成的字符串的最小長(zhǎng)度,第二個(gè)參數(shù)是用來(lái)補(bǔ)全的字符串。如果沒(méi)有指定第二個(gè)參數(shù),默認(rèn)用空格填充。

console.log("h".padStart(5,"o"));  // "ooooh"
console.log("h".padEnd(5,"o"));    // "hoooo"
console.log("h".padStart(5));      // "    h"

如果指定的長(zhǎng)度小于或者等于原字符串的長(zhǎng)度,則返回原字符串:

console.log("hello".padStart(5,"A"));  // "hello"

如果原字符串加上補(bǔ)全字符串長(zhǎng)度大于指定長(zhǎng)度,則截去超出位數(shù)的補(bǔ)全字符串:

console.log("hello".padEnd(10,",world!"));  // "hello,worl"

常用于補(bǔ)全位數(shù):

console.log("123".padStart(10,"0"));  // "0000000123"

模板字符串

模板字符串相當(dāng)于加強(qiáng)版的字符串,用反引號(hào) `,除了作為普通字符串,還可以用來(lái)定義多行字符串,還可以在字符串中加入變量和表達(dá)式。

基本用法

普通字符串

let string = `Hello'\n'world`;
console.log(string); 
// "Hello'
// 'world"

多行字符串:

let string1 =  `Hey,
can you stop angry now?`;
console.log(string1);
// Hey,
// can you stop angry now?

字符串插入變量和表達(dá)式。

變量名寫(xiě)在 ${} 中,${} 中可以放入 JavaScript 表達(dá)式。

let name = "Mike";
let age = 27;
let info = `My Name is ${name},I am ${age+1} years old next year.`
console.log(info);
// My Name is Mike,I am 28 years old next year.

字符串中調(diào)用函數(shù):

function f(){
  return "have fun!";
}
let string2= `Game start,${f()}`;
console.log(string2);  // Game start,have fun!

注意要點(diǎn)

alert`Hello world!`;
// 等價(jià)于
alert('Hello world!');

當(dāng)模板字符串中帶有變量,會(huì)將模板字符串參數(shù)處理成多個(gè)參數(shù)。

function f(stringArr,...values){
 let result = ""; for(let i=0;i<stringArr.length;i++){
  result += stringArr[i];  if(values[i]){
   result += values[i];        }
    }
 return result;}let name = 'Mike';let age = 27;f`My Name is ${name},I am ${age+1} years old next year.`;// "My Name is Mike,I am 28 years old next year."
 f`My Name is ${name},I am ${age+1} years old next year.`;// 等價(jià)于f(['My Name is',',I am ',' years old next year.'],'Mike',28);

過(guò)濾 HTML 字符串,防止用戶輸入惡意內(nèi)容。

function f(stringArr,...values){
 let result = ""; for(let i=0;i<stringArr.length;i++){
  result += stringArr[i];   if(values[i]){
     result += String(values[i]).replace(/&/g, "&amp;")
               .replace(/</g, "&lt;")
               .replace(/>/g, "&gt;");    }
 }
 return result;}name = '<Amy&MIke>';f`<p>Hi, ${name}.I would like send you some message.</p>`;// <p>Hi, &lt;Amy&amp;MIke&gt;.I would like send you some message.</p>

國(guó)際化處理(轉(zhuǎn)化多國(guó)語(yǔ)言)

i18n`Hello ${name}, you are visitor number ${visitorNumber}.`;
 // 你好**,你是第**位訪問(wèn)者

“怎么使用ES6字符串”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!

向AI問(wèn)一下細(xì)節(jié)

免責(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)容。

es6
AI