「JavaScript」match正規表現で末尾の文字列を指定する
書式
/xxx$/
最後尾がxxx」の文字を指定しています。
ドルマークで末尾の文字列になります。
使用例
const str = /TM$/; const res = "ATM".match(str); console.log(res[0]);
実行結果
“TM"
Coding Changes the World
書式
/xxx$/
最後尾がxxx」の文字を指定しています。
ドルマークで末尾の文字列になります。
使用例
const str = /TM$/; const res = "ATM".match(str); console.log(res[0]);
実行結果
“TM"