js indexof
if (row.indexof(pattern) > -1)
在 contains方法里讨论的,即使是同样调用 indexof 方法,也可能由于 stringcomparison 参数的不同而有不同的效率,所以实际上 indexof 方法可以再细分为
row.indexof(pattern) > –1;
row.indexof(pattern,stringcomparison.ordinal) > –1;
asp教程.net regex.ismatch
所以利用 regex.ismatch(row,pattern) 也是一种选择。
1) 直接调用 regex 的静态方法。regex.ismatch(row,pattern);
2) 构造一个 regex 类型的实例,然后用实例的方法来检测。这样的好处是在初始化的时候就设好正则规则,而不需要每次动态设置。
时间: 2024-12-22 02:11:09