javascript match substring code example
Example 1: angular string contains
const string = "foo";
const substring = "oo";
console.log(string.includes(substring));
Example 2: check for substring javascript
const string = "javascript";
const substring = "script";
console.log(string.includes(substring));
Example 3: how to use the match function in javascript for regex
const str = 'For more information, see Chapter 3.4.5.1';
const re = /see (chapter \d+(\.\d)*)/i;
const found = str.match(re);
console.log(found);