在netsuite中找到一个字符串,并打印出来

时间:2016-12-05 13:40:36

标签: netsuite suitescript

在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中使用类似的功能。

1 个答案:

答案 0 :(得分:7)

使用RegExptest方法。见MDN Reference

看起来像

var pattern = /world/;
var n = pattern.test(str);

String#includes仅在ES2015中添加。 NetSuite正在运行Rhino 1.7 JS引擎,该引擎不支持任何ES2015或更高版本的JS。