freeCodeCamp/guide/chinese/certifications/javascript-algorithms-and-d.../regular-expressions/extract-matches/index.md

573 B
Raw Blame History

title localeTitle
Extract Matches 提取匹配

提取匹配

使用match()方法,您可以提取与正则表达式匹配的字符串部分。在此挑战中,您将从提供的字符串中提取“编码”一词。

提示1

更改正则表达式以检测“编码”一词。

提示2

你在字符串上调用match()方法了吗?

剧透警报 - 提前解决!

解:

let extractStr = "Extract the word 'coding' from this string."; 
 let codingRegex = /coding/; 
 let result = extractStr.match(codingRegex);