gpt4 book ai didi

python - 如何从字符串中解析?

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

我有带有标签“Key”的字符串,我需要在标签中获取文本。

string = "<Key>big_img/1/V071-e.jpg</Key>"

需要“big_img/1/V071-e.jpg”吗?

最佳答案

使用正则表达式:

import re

s = "<Key>big_img/1/V071-e.jpg</Key>"

re.findall(r"<Key>(.*)</Key>",s)
['big_img/1/V071-e.jpg']

关于python - 如何从字符串中解析?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30106781/

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