JavaScript exec正規表現で否定(^)のサンプル
環境
Windows 10 home 64bit
Google Chrome 107.0.5304.122
書式
const 変数名 = /[^文字]/;
文字以外の文字を指定しています。
使用例
const x = /[^B]/; const res = x.exec("TEST"); console.log(res[0]);
実行結果
> “T"
Coding Changes the World
環境
Windows 10 home 64bit
Google Chrome 107.0.5304.122
書式
const 変数名 = /[^文字]/;
文字以外の文字を指定しています。
使用例
const x = /[^B]/; const res = x.exec("TEST"); console.log(res[0]);
実行結果
> “T"