检查 JavaScript 字符串中是否存在子字符串
尽管 JavaScript 中没有显式的 String.contains() 方法,但有各种方法确定字符串是否包含特定子字符串的方法。
一种广泛使用的方法是String.indexOf() 函数。此函数返回字符串中指定子字符串第一次出现的索引。如果没有找到子字符串,则返回-1。
const string = "Hello world!"; const substring = "world"; const index = string.indexOf(substring); if (index !== -1) { console.log("Substring found!"); } else { console.log("Substring not found."); }
ES6 引入了 String.prototype.includes() 方法,为这种检查提供了更简洁的语法。它返回一个布尔值,指示字符串是否包含指定的子字符串。
const string = "Hello world!"; const substring = "world"; console.log(string.includes(substring)); // true
使用正则表达式是另一种选择。 String.match() 方法采用正则表达式作为参数并返回匹配数组。如果找到子字符串,则结果数组的长度将大于 0。
const string = "Hello world!"; const substring = "world"; const regex = new RegExp(substring); const matches = string.match(regex); if (matches && matches.length > 0) { console.log("Substring found!"); } else { console.log("Substring not found."); }
以上是如何检查 JavaScript 字符串中的子字符串?的详细内容。更多信息请关注PHP中文网其他相关文章!