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