首页 >web前端 >js教程 >如何检查 JavaScript 字符串中的子字符串?

如何检查 JavaScript 字符串中的子字符串?

Mary-Kate Olsen
Mary-Kate Olsen原创
2024-12-30 05:11:18737浏览

How Can I Check for a Substring in a JavaScript String?

检查 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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn