gpt4 book ai didi

javascript - 使用 RegExp 获取最后一次出现的字符串

转载 作者:行者123 更新时间:2023-11-30 08:43:40 26 4
gpt4 key购买 nike

假设我的文字如下:

One of the compelling reasons for buying this phone could be its display. Of course, we would have loved full HD, but then again we shut up because of the punchy price-tag. The screen responsiveness is also good.

我只想获取文本中最后一次出现“the”字符串的索引。(使用 RegExp)

var re = new RegExp("\\b"+"the"+"\\b",'g');
var pos = re.lastIndex;

仅给出字符串the..
第一次出现的位置有什么建议么?

最佳答案

为什么需要正则表达式来查找 substring 的最后一次出现。你可以使用原生的 .lastIndexOf() 方法:

re.lastIndexOf("the");

关于javascript - 使用 RegExp 获取最后一次出现的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23933381/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com