在netsuite suitescript 1.0中,我想检查一个字符串是否有一组关键字。在javascript中有一个名为.includes的函数(“Set_of_keywords_to_be_searched”); 我试过.include在netsuite但它给出错误。
例如:
var str = "Hello world, welcome to the javascript.";
var n = str.includes("world"); // this will return true
var n = str.includes("Apple"); // this will return false
我想在netsuite中使用类似的功能。
答案 0 :(得分:7)
使用RegExp
和test
方法。见MDN Reference
看起来像
var pattern = /world/;
var n = pattern.test(str);
String#includes
仅在ES2015中添加。 NetSuite正在运行Rhino 1.7 JS引擎,该引擎不支持任何ES2015或更高版本的JS。