JavaScript exec正規表現で末尾の文字列($)のサンプル
環境
Windows 10 home 64bit
Google Chrome 107.0.5304.122
書式
const 変数名 = /文字$/
符号($)を使って末尾の文字を指定しています。
使用例
const str = /ME$/; const res = str.exec("ARkGAME"); console.log(res[0]);
実行結果
> “ME"
Coding Changes the World
環境
Windows 10 home 64bit
Google Chrome 107.0.5304.122
書式
const 変数名 = /文字$/
符号($)を使って末尾の文字を指定しています。
使用例
const str = /ME$/; const res = str.exec("ARkGAME"); console.log(res[0]);
実行結果
> “ME"