gpt4 book ai didi

python - 从字符串中提取方括号文本

转载 作者:太空宇宙 更新时间:2023-11-03 18:55:55 24 4
gpt4 key购买 nike

有人可以帮我从字符串中删除字符,只留下“[....]”中的字符吗?

For example:

a = newyork_74[mylocation]

b = # strip the frist characters until you reach the first bracket [

c = [mylocation]

最佳答案

类似这样的事情:

>>> import re
>>> strs = "newyork_74[mylocation]"
>>> re.sub(r'(.*)?(\[)','\g<2>',strs)
'[mylocation]'

关于python - 从字符串中提取方括号文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17254591/

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