gpt4 book ai didi

python - 获取给定位置的词

转载 作者:太空宇宙 更新时间:2023-11-04 00:40:10 25 4
gpt4 key购买 nike

s = 'hello you blablablbalba qyosud'
i = 17

如何在位置 i 周围找到单词?,即我示例中的 blablablbalba


我在考虑这个,但它似乎不符合 Python 标准:

for j, c in enumerate(s):
if c == ' ':
if j < i:
start = j
else:
end = j
break

print start, end
print s[start+1:end]

最佳答案

这是另一种使用正则表达式的简单方法,

import re
s = 'hello you blablablbalba qyosud'
i = 17
string_at_i = re.findall(r"(\w+)", s[i:])[0]
print(re.findall(r"\w*%s\w*" % string_at_i, s))

更新:当有空间时,以前的模式失败。当前模式会处理它!

关于python - 获取给定位置的词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42220849/

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