const myString = "Hello, World!";
// 使用 includes 方法
if (myString.includes(",")) {
console.log("字符串中包含英文逗号");
} else {
console.log("字符串中不包含英文逗号");
}
其他方法
使用 indexOf():
if (myString.indexOf(",") !== -1) {
console.log("字符串中包含英文逗号");
}
使用正则表达式:
const regex = /,/;
if (regex.test(myString)) {
console.log("字符串中包含英文逗号");
}
本文转载自互联网,如有侵权,联系删除。