假设我有一个长字符串,例如:
var sentence = "Marry had a little lamb, Peter had a little wolf, the wolf ate the little lamb and the little wolf was happy.";
我需要在字符串中找到子字符串“Peter”的位置。
那当然是var pos = sentence.indexOf("Peter");
。
但是现在我有一个问题 - 我需要找到子字符串“lamb”的最后一次出现和子字符串“wolf”before
pos
的第一次出现。 pos
我怎么做?请纯 Javascript,不要 jQuery。