当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js assert.match(string, regexp[, message])用法及代码示例


assert.match(string, regexp[, message])

历史
版本变化
v16.0.0

此 API 不再是实验性的。

v13.6.0、v12.16.0

添加于:v13.6.0、v12.16.0


参数

期望 string 输入与正则表达式匹配。

import assert from 'node:assert/strict';

assert.match('I will fail', /pass/);
// AssertionError [ERR_ASSERTION]: The input did not match the regular ...

assert.match(123, /pass/);
// AssertionError [ERR_ASSERTION]: The "string" argument must be of type string.

assert.match('I will pass', /pass/);
// OKconst assert = require('node:assert/strict');

assert.match('I will fail', /pass/);
// AssertionError [ERR_ASSERTION]: The input did not match the regular ...

assert.match(123, /pass/);
// AssertionError [ERR_ASSERTION]: The "string" argument must be of type string.

assert.match('I will pass', /pass/);
// OK

如果值不匹配,或者如果 string 参数属于 string 以外的其他类型,则会引发 AssertionError message 属性设置等于 message 参数的值。如果 message 参数未定义,则分配默认错误消息。如果 message 参数是 Error 的实例,那么它将被抛出而不是 AssertionError

相关用法


注:本文由纯净天空筛选整理自nodejs.org大神的英文原创作品 assert.match(string, regexp[, message])。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。