239

Possible Duplicates:
Check if text is in a string
JavaScript: string contains

I'm trying to check if a string I import into my application has a certain piece of text. I know how to do this with jQuery, but how do I do it with straight up JavaScript?

wonea
  • 4,425
  • 17
  • 82
  • 137
swickblade
  • 4,326
  • 5
  • 19
  • 24

1 Answers1

432

Here you go: ES5

var test = 'Hello World';
if( test.indexOf('World') >= 0){
  // Found world
}

With ES6 best way would be to use includes function to test if the string contains the looking work.

const test = 'Hello World';
if (test.includes('World')) { 
  // Found world
}
Eddie
  • 12,535
  • 3
  • 24
  • 31