「JavaScript」match正規表現で先頭の文字列を指定する
環境
Google Chrome 99.0.4844.82
書式
/^指定文字/
先頭が指定文字を指定しています。
ハット^で先頭の文字列になります。
使用例
const a = /^ST/; const res = "ST111".match(a); console.log(res[0]);
実行結果
“ST"
Coding Changes the World
環境
Google Chrome 99.0.4844.82
書式
/^指定文字/
先頭が指定文字を指定しています。
ハット^で先頭の文字列になります。
使用例
const a = /^ST/; const res = "ST111".match(a); console.log(res[0]);
実行結果
“ST"