可以通过以下方式实现:
indexOf()
方法或正则表达式来检查字符串中是否包含该单词。示例代码如下(使用JavaScript语言):
function checkStringContainsWord(str, wordList) {
for (let i = 0; i < wordList.length; i++) {
if (str.indexOf(wordList[i]) !== -1) {
return true;
}
}
return false;
}
在这个例子中,checkStringContainsWord
函数接受两个参数:待检查的字符串 str
和给定的单词列表 wordList
。函数通过循环遍历 wordList
中的每个单词,使用 indexOf()
方法检查字符串中是否包含该单词。如果找到任何一个匹配的单词,函数将返回 true,否则返回 false。
使用示例:
const string = "This is a sample string.";
const wordList = ["sample", "test", "example"];
const containsWord = checkStringContainsWord(string, wordList);
console.log(containsWord); // 输出 true,因为字符串中包含了列表中的单词 "sample"
在上述示例中,checkStringContainsWord
函数检查字符串 string
是否包含给定列表 wordList
中的任何一个单词。由于字符串中包含了列表中的单词 "sample",因此最终结果为 true。
领取专属 10元无门槛券
手把手带您无忧上云