JavaScript exec正規表現で連続する文字を指定するサンプル
環境
Windows 10 home 64bit
Google Chrome 107.0.5304.122
書式
const 変数名 =/文字{数値}/
{数値}を使って連続する文字を指定しています。
使用例
const str = /t{3}/; const res = str.exec("stttu"); console.log(res[0]);
結果
> “ttt"
Coding Changes the World
環境
Windows 10 home 64bit
Google Chrome 107.0.5304.122
書式
const 変数名 =/文字{数値}/
{数値}を使って連続する文字を指定しています。
使用例
const str = /t{3}/; const res = str.exec("stttu"); console.log(res[0]);
結果
> “ttt"