在一个字符串中搜索两个单词可以通过以下步骤实现:
以下是一个示例的JavaScript代码实现:
function searchWords(str, word1, word2) {
var index1 = str.indexOf(word1);
var index2 = str.indexOf(word2, index1 + word1.length);
return [index1, index2];
}
var str = "This is a sample string to search two words.";
var word1 = "sample";
var word2 = "words";
var result = searchWords(str, word1, word2);
console.log(result);
输出结果为:[10, 31],表示第一个单词"sample"在字符串中的位置是10,第二个单词"words"在字符串中的位置是31。
对于这个问题,腾讯云没有特定的产品或服务与之相关。
领取专属 10元无门槛券
手把手带您无忧上云