繁体   English   中英

如何使用Python从单行开始[以#结尾]的所有字符串?

[英]How can I get all strings starting with [ and ending with ] out of a single line using Python?

对不起,我是python的新手,并试图弄清楚如何从所有字符串中取出特定的字符串序列

我尝试使用re但我不太明白..

import re

userinput = input('Enter the name of the file:')
file = open(userinput)
info = file.readlines()
info = re.sub(r'\[[.+]\]','',info)
print(info)
file.close()

如果文件包括:notokay [okay] notokayas [okay2] sjnfksdnfnslk

我希望能够提取:好的,好的2

使用re.findall

例如:

import re

s = "notokay[okay]notokayas[okay2]sjnfksdnfnslk"
print(re.findall(r"\[(.*?)\]", s))

输出:

['okay', 'okay2']

您可以使用以下模式匹配:

\[(.*?)\]

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM