Skip to content

Instantly share code, notes, and snippets.

@itomg
Created September 27, 2013 03:07
Show Gist options
  • Save itomg/6723666 to your computer and use it in GitHub Desktop.
Save itomg/6723666 to your computer and use it in GitHub Desktop.
var str = 'asdfasflasjfasjfasfapple;asdfasfasfas';
var keyword = 'apple';
if(str.search(new RegExp(keyword, 'i')) == -1){
alert('Found ' + keyword);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment