W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
substr()方法返回從指定位置開始的字符串中的字符到指定的字符數(shù)。
string.substr(start[, length]);
start - 開始提取字符的位置(0到1之間的整數(shù),小于字符串的長(zhǎng)度)。
length - 要提取的字符數(shù)。
注意 - 如果start為負(fù)數(shù),則substr將其用作字符串末尾的字符索引。
substr()方法根據(jù)給定的參數(shù)返回新的子字符串。
var str = "Apples are round, and apples are juicy."; console.log("(1,2): " + str.substr(1,2)); console.log("(-2,2): " + str.substr(-2,2)); console.log("(1): " + str.substr(1)); console.log("(-20, 2): " + str.substr(-20,2)); console.log("(20, 2): " + str.substr(20,2));
在編譯時(shí),它將在JavaScript中生成相同的代碼。
其輸出如下:
(1,2): pp (-2,2): y. (1): pples are round, and apples are juicy. (-20, 2): nd (20, 2): d
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: