gpt4 book ai didi

python - 用于从文本中获取 $ 字符之间内容的正则表达式

转载 作者:行者123 更新时间:2023-11-28 20:11:45 25 4
gpt4 key购买 nike

问题:
我需要从文本 block 中提取 $ 字符之间的字符串,但在正则表达式方面我完全是个笨蛋。

例如从这段文字:
Li Europan lingues $es membres$ del sam familie。 Lor $separat existentie es un$ myth.

我想得到一个包含以下内容的数组:
{'es membres', 'separat existentie es un'}

用 Python 编写的小片段会很棒。

最佳答案

导入 re 模块,并使用 findall():

>>> import re
>>> p = re.compile('\$(.*?)\$')
>>> s = "apple $banana$ coconut $delicious ethereal$ funkytown"
>>> p.findall(s)
['banana', 'delicious ethereal']

模式p表示一个美元符号(\$),然后是一个非贪婪匹配组((...?) ) 匹配字符 (.),其中必须有零个或多个 (*),后跟另一个美元符号 (\$)。

关于python - 用于从文本中获取 $ 字符之间内容的正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1983126/

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