📜  Lodash _.isRegExp() 方法

📅  最后修改于: 2022-05-13 01:56:48.067000             🧑  作者: Mango

Lodash _.isRegExp() 方法

Lodash是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。

_.isRegExp() 方法用于查找给定值是否为正则表达式。如果给定值是正则表达式,则返回 True。否则,它返回 false。

句法:

_.isRegExp(value)

参数:此方法接受如上所述和如下所述的单个参数:

value:此参数保存要检查的值。

返回值:如果值为正则表达式,则此方法返回 true,否则返回 false。

注意:这里使用 const _ = require('lodash') 将 lodash 库导入文件。
示例 1:将正则表达式传递给 _.isRegExp()函数
在这里,对象以'/'开始和结束,因此它是一个正则表达式。因此,结果为真。

javascript
// Requiring the lodash library 
const _ = require("lodash"); 
     
// Use of _.isRegExp() method
console.log(_.isRegExp(/gfg/));


javascript
// Requiring the lodash library 
const _ = require("lodash"); 
     
// Use of _.isRegExp() method
console.log(_.isRegExp('gfg'));


javascript
// Requiring the lodash library 
const _ = require("lodash"); 
     
// Use of _.isRegExp() method
console.log(_.isRegExp('/gfg/'));


输出:

true

示例 2:将字符串传递给 _.isRegExp()函数
由于字符串不是正则表达式,因此输出将为假。

javascript

// Requiring the lodash library 
const _ = require("lodash"); 
     
// Use of _.isRegExp() method
console.log(_.isRegExp('gfg'));

输出:

false

示例 3:将带有 '/' 的字符串传递给 _.isRegExp()函数
因此,整个对象是一个字符串.,输出将是错误的。

javascript

// Requiring the lodash library 
const _ = require("lodash"); 
     
// Use of _.isRegExp() method
console.log(_.isRegExp('/gfg/'));

输出:

false

注意:此代码在普通 JavaScript 中不起作用,因为它需要安装库 lodash。

参考: https://lodash.com/docs/4.17.15#isRegExp