當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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])。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。