關於JS中match() 和 exec() 傳回值和屬性的測試,matchexec

來源:互聯網
上載者:User

關於JS中match() 和 exec() 傳回值和屬性的測試,matchexec

文法:

exec() :RegExpObject.exec(string) match() :stringObject.match(string)stringObject.match(regexp) 

知識點:

exec() 是RegExp對象的方法,而 match() 是String對象的方法。
都會返回包含第一個匹配項資訊的數組;或者在沒有匹配項的情況下返回null。
返回的數組雖然是Array 的執行個體,但包含兩個額外的屬性:index 和 input。其中,index 表示匹配項在字串中的位置,而 input 表示應用Regex的字串。
在數組中,第一項是與整個模式比對的字串,其他項是與模式中的擷取的群組匹配的字串(如果模式中沒有擷取的群組,則該數組只包含一項)。

測試:

對 match() 的測試代碼:

var text = "mom and dad and baby";var pattern = /(mom and )?(dad and )?baby/;var matches = text.match(pattern);//pattern.exec(text);console.log(matches.index);console.log(matches.input);console.log(matches[0]);console.log(matches[1]);console.log(matches[2]);

對 match() 的測試結果:


對 exec() 的測試代碼:

var text = "mom and dad and baby";var pattern = /(mom and )?(dad and )?baby/;var matches = pattern.exec(text);//text.match(pattern);console.log(matches.index);console.log(matches.input);console.log(matches[0]);console.log(matches[1]);console.log(matches[2]);

對 exec() 的測試結果:


String 對象方法

方法 描述
exec 檢索字串中指定的值。返回找到的值,並確定其位置
test 檢索字串中指定的值。返回 true 或 false。

String 對象方法

方法 描述
match() 找到一個或多個Regex的匹配。
replace() 替換與Regex匹配的子串。
search() 檢索與Regex相匹配的值。

關於JS中match() 和 exec() 傳回值和屬性的測試就給大家介紹到這裡,希望對大家有所協助!

您可能感興趣的文章:
  • JS正則中的match與exec使用說明
  • js正則函數match、exec、test、search、replace、split使用介紹集合
  • js中exec、test、match、search、replace、split用法
  • javascript 中String.match()與RegExp.exec()的區別說明
  • js正則表達exec與match的區別說明
  • js的正則test,match,exec詳細解析
  • jsRegex中test,exec,match方法的區別說明

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.