1. ホーム
  2. ジャバスクリプト

[解決済み] jQueryで文字列が特定の文字列で始まる/終わることを知るにはどうすればよいですか?

2022-04-09 19:30:26

質問

jQueryで文字列が指定した文字/文字列で始まるか、終わるかを知りたいです。

例として

var str = 'Hello World';

if( str starts with 'Hello' ) {
   alert('true');
} else {
   alert('false');
}

if( str ends with 'World' ) {
   alert('true');
} else {
   alert('false');
}

もし、このような機能がない場合、どのような代替手段があるのでしょうか?

解決方法は?

正規表現を使うのも一つの方法です。

if (str.match("^Hello")) {
   // do this if begins with Hello
}

if (str.match("World$")) {
   // do this if ends in world
}