编程语言
首页 > 编程语言> > js 中怎么判断字符串中是否存在%?

js 中怎么判断字符串中是否存在%?

作者:互联网

以下是几种常用的方法:

1. 使用 includes() 方法

includes() 方法用于判断一个字符串是否包含另一个指定的字符串,返回 true 或 false

const str = "Hello, this is a test string with % character.";
const containsPercent = str.includes('%');

console.log(containsPercent); // 输出: true

JavaScript

2. 使用 indexOf() 方法

indexOf() 方法返回指定字符串在调用字符串对象中首次出现的位置,如果未找到则返回 -1

const str = "Hello, this is a test string without the character.";
const containsPercent = str.indexOf('%') !== -1;

console.log(containsPercent); // 输出: false

JavaScript

3. 使用正则表达式

您还可以使用正则表达式来检查字符串中是否存在 % 字符。

const str = "This string contains % character.";
const containsPercent = /%/.test(str);

console.log(containsPercent); // 输出: true

标签:
来源: