util模块的util.types.isRegExp()方法主要用于满足Node.js自己的内部API的需求。用于检查传递的值是否为正则表达式。
用法:
util.types.isRegExp( value )
参数:此方法接受单个参数值,该参数值包含任何值,即任何模块的实例。
返回值:此方法返回布尔值,即,如果传递的值是正则表达式,则为true,否则返回false。
以下示例说明了Node.js中util.types.isRegExp()方法的使用:
范例1:
// Node.js program to demonstrate the
// util.types.isRegExp() method
// It includes util module
const util = require('util');
// Returns false as the passed instance
// is not regular expression
console.log(util.types.isRegExp(new Map()));
// Returns true as the passed instance
// is regular expression
console.log(util.types.isRegExp(new RegExp('xyz')));
输出:
false true
范例2:
// Node.js program to demonstrate the
// util.types.isRegExp() method
// It includes util module
const util = require('util');
// Returns false as the passed instance
// is not regular expression
console.log(util.types.isRegExp(new Map()));
// Returns true as the passed instance
// is regular expression
console.log(util.types.isRegExp(new RegExp('xyz')));
// Returns true as the passed instance
// is regular expression
console.log(util.types.isRegExp(/abc/));
// Returns false as the passed instance
// is not regular expression
console.log(util.types.isRegExp(new Int32Array()));
// Returns true as the passed instance
// is regular expression
console.log(util.types.isRegExp(/ab+c/));
输出:
false true true false true
参考: https://nodejs.org/api/util.html#util_util_types_isregexp_value
相关用法
注:本文由纯净天空筛选整理自akshajjuneja9大神的英文原创作品 Node.js | util.types.isRegExp() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。