gpt4 book ai didi

正则表达式在模式后提取文本

转载 作者:行者123 更新时间:2023-12-05 09:32:59 25 4
gpt4 key购买 nike

我正在尝试从加载器输出中提取错误消息,如下所示:

LOADER_ERROR : *** Failure The UserId, Password or Account is invalid., attempts:1
LOADER_ERROR : *** Time out waiting for a response.

预期输出:

Failure The UserId, Password or Account is invalid., attempts:1
Time out waiting for a response.

使用下面的正则表达式,我可以提取最后一次出现“:”字符后的所有内容。

  .+(\:\s.+)$

输出:

: *** Failure The UserId, Password or Account is invalid., attempts:1
: *** Time out waiting for a response.

如何从输出的开头去除':'或'***'?

感谢您的帮助

最佳答案

您将 :*** 包含在组中,这样它们就会出现在输出中。这应该有效:

.+\:\s\W+(.+)$

Check its demo here.

关于正则表达式在模式后提取文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67605041/

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