断言模块提供了一组用于验证不变量的断言函数。 assert.match()函数期望输入的字符串与正则表达式匹配。如果条件为真,则不会产生输出,否则会引发断言错误。
用法:
assert.match(string, regexp[, message])
参数:该函数接受上述和以下描述的以下参数:
- string:此参数保存需要评估的字符串值。它是字符串类型。
- regexp:此参数是与给定字符串值匹配的正则表达式。
- message:此参数保存字符串或错误类型的错误消息。它是一个可选参数。
返回值:此函数返回对象类型的断言错误。
断言模块的安装:
- 您可以访问指向安装断言模块的链接。您可以使用此命令安装此软件包。
npm install assert
注意:安装是可选步骤,因为它是内置的Node.js模块。
- 安装断言模块后,可以使用命令在命令提示符下检查断言版本。
npm version assert
- 之后,您可以创建一个文件夹并添加一个文件,例如index.js,如下所示。
范例1: 文件名:index.js
// Requiring the module
const assert = require('assert').strict;
// Function call
try {
assert.match('I will try to pass', /fail/);
} catch(error) {
console.log("Error:", error)
}
运行程序的步骤:
- 项目结构将如下所示:
- 使用以下命令运行index.js文件:
node index.js
输出:
Error:AssertionError [ERR_ASSERTION]:The input did not match the regular
expression /fail/. Input:‘I will try to pass’
at Object.
(C:\Users\Lenovo\Downloads\index.js:14:12)
at Module._compile (internal/modules/cjs/loader.js:1138:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:1158:10)
at Module.load (internal/modules/cjs/loader.js:986:32)
at Function.Module._load (internal/modules/cjs/loader.js:879:14)
at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:71:12)
at internal/main/run_main_module.js:17:47 {
generatedMessage:true,
code:‘ERR_ASSERTION’,
actual:‘I will try to pass’,
expected:/fail/,
operator:‘match’
}
范例2: 文件名:index.js
// Requiring the module
const assert = require('assert').strict;
// Function call
try {
assert.match('I am good', /good/);
console.log("No Error Occured")
} catch(error) {
console.log("Error:", error)
}
运行程序的步骤:
- 项目结构将如下所示:
- 使用以下命令运行index.js文件:
node index.js
输出:
No Error Occured
参考: https://nodejs.org/dist/latest-v12.x/docs/api/assert.html#assert_assert_match_string_regexp_message
相关用法
- Node.js GM flip()用法及代码示例
- Node.js GM flop()用法及代码示例
- Node.js GM charcoal()用法及代码示例
- Node.js GM blur()用法及代码示例
- Node.js GM sharpen()用法及代码示例
- Node.js GM bordercolor()用法及代码示例
- Node.js GM modulate()用法及代码示例
- Node.js GM monochrome()用法及代码示例
- Node.js GM equalize()用法及代码示例
- Node.js GM enhance()用法及代码示例
- Node.js GM border()用法及代码示例
- Node.js GM edge()用法及代码示例
- Node.js GM implode()用法及代码示例
- Node.js GM recolor()用法及代码示例
- Node.js GM randomThreshold()用法及代码示例
- Node.js GM operator()用法及代码示例
- Node.js GM chop()用法及代码示例
- Node.js GM channel()用法及代码示例
- Node.js GM orderedDither()用法及代码示例
注:本文由纯净天空筛选整理自gouravhammad大神的英文原创作品 Node.js assert.match() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。