"The dog chased the cat"
中匹配到"the"
这个单词,可以使用如下正则表达式:/the/
。注意,正则表达式中不需要引号。
JavaScript 中有多种使用正则表达式的方法。测试正则表达式的一种方法是使用.test()
方法。.test()
方法会把编写的正则表达式和字符串(即括号内的内容)匹配,如果成功匹配到字符,则返回true
,反之,返回false
。
```js
let testStr = "freeCodeCamp";
let testRegex = /Code/;
testRegex.test(testStr);
// Returns true
```
.test()
方法,检测字符串myString
是否符合正则表达式myRegex
定义的规则。
.test()
方法来检测正则表达式。
testString: assert(code.match(/myRegex.test\(\s*myString\s*\)/));
- text: 你的返回结果应该为true
。
testString: assert(result === true);
```