Created
June 26, 2014 10:46
-
-
Save HAKASHUN/cbc1334b70b1c54d9b93 to your computer and use it in GitHub Desktop.
Javascriptで部分一致評価
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var target = 'hoge'; | |
var search = 'og'; | |
if(target.indexOf(search) != -1) { | |
console.log('部分一致'); | |
} else { | |
console.log('部分一致ではない'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment