第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

返回正則表達(dá)式match()在Javascript中的位置?

返回正則表達(dá)式match()在Javascript中的位置?

有沒有辦法在Java的regex match()結(jié)果的字符串中檢索(開始)字符位置?
查看完整描述

3 回答

?
慕婉清6462132

TA貢獻(xiàn)1804條經(jīng)驗(yàn) 獲得超2個(gè)贊

exec返回具有index屬性的對(duì)象:

var match = /bar/.exec("foobar");

if (match) {

    console.log("match found at " + match.index);

}

對(duì)于多個(gè)匹配項(xiàng):


var re = /bar/g,

    str = "foobarfoobar";

while ((match = re.exec(str)) != null) {

    console.log("match found at " + match.index);

}


查看完整回答
反對(duì) 回復(fù) 2019-11-12
?
手掌心

TA貢獻(xiàn)1942條經(jīng)驗(yàn) 獲得超3個(gè)贊

這是我想出的:


// Finds starting and ending positions of quoted text

// in double or single quotes with escape char support like \" \'

var str = "this is a \"quoted\" string as you can 'read'";


var patt = /'((?:\\.|[^'])*)'|"((?:\\.|[^"])*)"/igm;


while (match = patt.exec(str)) {

  console.log(match.index + ' ' + patt.lastIndex);

}


查看完整回答
反對(duì) 回復(fù) 2019-11-12
  • 3 回答
  • 0 關(guān)注
  • 1273 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)