gpt4 book ai didi

ruby - 用于在引号之间的特定单词后提取文本的正则表达式

转载 作者:太空宇宙 更新时间:2023-11-03 16:51:48 25 4
gpt4 key购买 nike

我有一些字符串的格式如下:

"text that comes before\"start\":\"Desired Info\"text that comes after"

我只想提取“所需信息”。它将始终以 "\"start\":" 开头,这只会在字符串中出现一次。我可以使用什么正则表达式来执行此操作?

最佳答案

这应该有效:

s = "text that comes before\"start\":\"Desired Info\"text that comes after"

s[/(?<="start":")[^"]*(?=")/]
# => "Desired Info"

关于ruby - 用于在引号之间的特定单词后提取文本的正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19745468/

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