Skip to content

Instantly share code, notes, and snippets.

@HAKASHUN
Created June 26, 2014 10:46
Show Gist options
  • Save HAKASHUN/cbc1334b70b1c54d9b93 to your computer and use it in GitHub Desktop.
Save HAKASHUN/cbc1334b70b1c54d9b93 to your computer and use it in GitHub Desktop.
Javascriptで部分一致評価
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