题目名称

给你一个字符串 sentence 作为句子并指定检索词为 searchWord ,其中句子由若干用 单个空格 分隔的单词组成。请你检查检索词 searchWord 是否为句子 sentence 中任意单词的前缀。

如果 searchWord 是某一个单词的前缀,则返回句子 sentence 中该单词所对应的下标(下标从 1 开始)。如果 searchWord 是多个单词的前缀,则返回匹配的第一个单词的下标(最小下标)。如果 searchWord 不是任何单词的前缀,则返回 -1 。

字符串 s 的 前缀 是 s 的任何前导连续子字符串

示例

输入:sentence = “i love eating burger”, searchWord = “burg”

输出:4

题解

答案

1
2
3
4
5
6
7
8
9
var isPrefixOfWord = function(sentence, searchWord) {
const sentance = sentence.split(" ")
for(let i = 0; i < sentance.length; i++) {
if(sentance[i].startsWith(searchWord)) {
return i + 1
}
}
return -1
}