* fix: Chinese test suite Add localeTiltes, descriptions, and adjust test text and testStrings to get the automated test suite working. * fix: ran script, updated testStrings and solutions
2.0 KiB
2.0 KiB
id, title, challengeType, videoUrl, localeTitle
id | title | challengeType | videoUrl | localeTitle |
---|---|---|---|---|
587d7db3367417b2b2512b8f | Match Literal Strings | 1 | 匹配文字字符串 |
Description
/Hello/
搜索了单词"Hello"
。该正则表达式搜索字符串"Hello"
的文字匹配。这是另一个搜索字符串"Kevin"
的文字匹配的示例: 让testStr =“你好,我的名字是凯文。”;任何其他形式的
让testRegex = / Kevin /;
testRegex.test(testStr);
//返回true
"Kevin"
都不匹配。例如,正则表达式/Kevin/
将不匹配"kevin"
或"KEVIN"
。 let wrongRegex = / kevin /;未来的挑战将展示如何匹配其他形式。
wrongRegex.test(testStr);
//返回false
Instructions
waldoRegex
在字符串waldoIsHiding
使用文字匹配查找"Waldo"
。 Tests
tests:
- text: 你的正则表达式<code>waldoRegex</code>应该找到<code>"Waldo"</code>
testString: assert(waldoRegex.test(waldoIsHiding));
- text: 你的正则表达式<code>waldoRegex</code>不应该搜索任何其他内容。
testString: assert(!waldoRegex.test('Somewhere is hiding in this text.'));
- text: 您应该与正则表达式执行文字字符串匹配。
testString: assert(!/\/.*\/i/.test(code));
Challenge Seed
let waldoIsHiding = "Somewhere Waldo is hiding in this text.";
let waldoRegex = /search/; // Change this line
let result = waldoRegex.test(waldoIsHiding);
Solution
// solution required