我可以检查字符串是否等于带有正则表达式的给定关键字。 例如 :
Regex: /^hello$/
String: hello
Result: matches, as expected
Regex: /^goodbye$/
String: goodbye
Result: matches, as expected
Regex: /^bye$/
String: bye bye
Result: does not match, as expected
我无法做到的是检查字符串是否等于关键字。下面是一些我试图做到的例子:
Regex: ^(?!hello).*$
String: bye
Result: matches, as expected
Regex: ^(?!hello).*$
String: bye bye
Result: matches, as expected
Regex: ^(?!hello).*$
String: say hello
Result: matches, as expected
Regex: ^(?!hello).*$
String: hello you
Result: does not match, but should match because "hello you" is not equal to "hello"
我想我接近,但需要有人帮忙。以下是另一个例子:
Regex: ^(?!freshsfruits).*$
String: fresh fruits
Result: does not match, as expected
Regex: ^(?!freshsfruits).*$
String: lots of fresh fruits
Result: matches, as expected
Regex: ^(?!freshsfruits).*$
String: fresh fruits, love them.
Result: does not match, but should match
谢谢!