freeCodeCamp.org

Regular expressions - JavaScript | MDN

Using test method

let testStr = "freeCodeCamp";
let testRegex = /Code/;
testRegex.test(testStr); // true

let myString = "Hello, World!";
let myRegex = /Hello/;
let result = myRegex.test(myString); // true

let testStr = "Hello, my name is Kevin.";
let testRegex = /Kevin/;
testRegex.test(testStr); //true

let wrongRegex = /kevin/;
wrongRegex.test(testStr) // false

Match a Literal String with Different Possibilities

let catPetString = "James has a pet cat.";
let dogPetString = "James has a pet dog.";
let lionPetString = "James has a pet lion.";
let petRegex = /cat|dog|fish/; 
let test1 = petRegex.test(catPetString ); // true
let test2 = petRegex.test(dogPetString ); // true
let test3 = petRegex.test(lionPetString ); // false

Ignore Case While Matching

let myString = "freeCodeCamp";
let fccRegex = /freecodecamp/i; // i at the end will flag the regex to ignorecase
let result = fccRegex.test(myString);