gpt4 book ai didi

string - 在两个子字符串之间查找字符串

转载 作者:IT老高 更新时间:2023-10-28 12:18:10 24 4
gpt4 key购买 nike

如何在两个子字符串之间找到一个字符串 ('123STRINGabc' -> 'STRING')?

我现在的方法是这样的:

>>> start = 'asdf=5;'
>>> end = '123jasd'
>>> s = 'asdf=5;iwantthis123jasd'
>>> print((s.split(start))[1].split(end)[0])
iwantthis

但是,这似乎非常低效且不符合 Python 风格。有什么更好的方法来做这样的事情?

忘了说:字符串可能不以 startend 开头和结尾。它们前后可能有更多字符。

最佳答案

import re

s = 'asdf=5;iwantthis123jasd'
result = re.search('asdf=5;(.*)123jasd', s)
print(result.group(1))

关于string - 在两个子字符串之间查找字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3368969/

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