gpt4 book ai didi

python - 使用正则表达式 python 提取子字符串

转载 作者:行者123 更新时间:2023-12-05 08:55:59 26 4
gpt4 key购买 nike

<分区>

我知道这是一个非常常见的问题,但它让我抓狂。

我想使用正则表达式来匹配我的字符串中的子字符串。

 line = '##ParameterValue[part I care about]=garbagegarbage'

我想提取我关心的部分。我的代码如下所示:

import re
line = '##ParameterValue[part I care about]=garbagegarbage'
m = re.match('\[(.*)\]', line)
print m.group(1)

但这给了我一个 AttributeError: 'NoneType' object has no attribute 'group'

我在 regex101 上测试了我的正则表达式它有效。我不明白为什么这对我来说失败了。

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