how to check if the string have a specific pattern ts code example
Example 1: angular string contains
const string = "foo";
const substring = "oo";
console.log(string.includes(substring));
Example 2: javascript string contains
var string = "foo",
substring = "oo";
console.log(string.includes(substring));