gpt4 book ai didi

javascript - 查找字符串中引号之间的值并将该值存储在变量中

转载 作者:行者123 更新时间:2023-12-02 13:44:25 24 4
gpt4 key购买 nike

我找到了有关我的帖子的链接 How to extract a substring using regex但它是用java编写的。

假设我有一句话:

var sentence = "This is a long sentence but I only want this 'information'";

然后我想提取引号中的值(值:信息)并将其存储在变量中。我该怎么办?

最佳答案

您可以使用String.prototype.slice()String.prototype.indexOf()String.prototype.lastIndexOf()

var sentence = "This is a long sentence but I only want this 'information'";

var res = sentence.slice(sentence.indexOf("'") + 1, sentence.lastIndexOf("'"));

console.log(res);

关于javascript - 查找字符串中引号之间的值并将该值存储在变量中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41524493/

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