「JavaScript」testメソッド正規表現で先頭の文字列を指定するサンプル
書式
変数名 = /^文字列/
先頭が指定文字列を指定しています。
正規表現のパターンで文字列を検索します。
一致した場合はtrueを返し、一致しなかった場合falseを返します。
使用例
const rr = /^ST/; console.log(rr.test("STUDY")); console.log(rr.test("STudent")); console.log(rr.test("ARK"));
実行結果
true
true
false