1.8 KiB
1.8 KiB
id, title, challengeType, videoUrl, localeTitle
id | title | challengeType | videoUrl | localeTitle |
---|---|---|---|---|
587d7db3367417b2b2512b8e | Using the Test Method | 1 | 使用测试方法 |
Description
"The dog chased the cat"
找到单词"the"
,你可以使用以下正则表达式: /the/
。请注意,正则表达式中不需要引号。 JavaScript有多种方法可以使用正则表达式。测试正则表达式的一种方法是使用.test()
方法。 .test()
方法接受正则表达式,将其应用于字符串(放在括号内),如果模式发现或不存在,则返回true
或false
。 让testStr =“freeCodeCamp”;
让testRegex = / Code /;
testRegex.test(testStr);
//返回true
Instructions
.test()
方法在字符串myString
上应用正则表达式myRegex
。 Tests
tests:
- text: 你应该使用<code>.test()</code>来测试正则表达式。
testString: 'assert(code.match(/myRegex.test\(\s*myString\s*\)/), "You should use <code>.test()</code> to test the regex.");'
- text: 您的结果应该返回<code>true</code> 。
testString: 'assert(result === true, "Your result should return <code>true</code>.");'
Challenge Seed
let myString = "Hello, World!";
let myRegex = /Hello/;
let result = myRegex; // Change this line
Solution
// solution required