匹配JavaScript中的正则表达式中的特定单词?

要匹配正则表达式中的特定单词,请使用正则表达式。

示例

以下是代码-

var sentence = "This is the not javascript Tutorial";
var regularExpression = /\bjavascript\b/g;
var output = regularExpression.test(sentence);
console.log(output);

要运行上述程序,您需要使用以下命令-

node fileName.js.

在这里,我的文件名为demo308.js。

输出结果

这将产生以下输出-

PS C:\Users\Amit\javascript-code> node demo308.js
true