startWith()
更新日: 2018-09-14
is.startWith(value:string, target:string)
渡された文字列が指定した文字で始まっているかどうかを判定します。
- インターフェース:
not
is.startWith('yeap', 'ye');
=> true
is.startWith('nope', 'ye');
=> false
is.not.startWith('nope not that', 'not');
=> true
デモ
変数を判定してconsole.log
を出力します。
JavaScript
var string1 = 'yeap',
substr1 = 'ye',
string2 = '全角文字列でも判定可能です。';
substr2 = '全角';
if (is.startWith(string1, substr1)) {
console.log("'yeap'は'ye'から始まります。");
}
if (is.startWith(string2, substr2)) {
console.log('全角文字列でも判定可能です。');
}
© 2014-2016 Aras Atasaygin Released under the MIT license
このコンテンツはAras Atasaygin(arasatasaygin)によるis.jsドキュメントを翻訳/改変したものです。