How to search a word in a string with regular expression (RegExp) in JavaScript

2 Answers

0 votes
const str = "device width viewport";
 
const index = str.search(/width/i)

console.log(index); 



      
/*
run:
      
7
      
*/

 



answered Jun 23, 2015 by avibootz
edited May 28, 2022 by avibootz
0 votes
const str = "device WIDTH viewport";
 
const index = str.search(/width/i) // i - modifier for search case-insensitive

console.log(index); 



      
/*
run:
      
7
      
*/

 



answered Jun 23, 2015 by avibootz
edited May 28, 2022 by avibootz
...