gpt4 book ai didi

python - 在一些字符后替换字符串

转载 作者:行者123 更新时间:2023-11-28 21:21:17 24 4
gpt4 key购买 nike

如何替换字符串中的子字符串?例如我有字符串:

string1/aaa
this is string2/bbb
string 3/ccc
this is some string/ddd

我想读取“/”之后的子字符串。我需要这个输出:

aaa
bbb
ccc
ddd

谢谢。

最佳答案

可以拆分字符串获取数据

my_string.split("/")[1]

例如,

data = ["string1/aaa", "this is string2/bbb", "string 3/ccc",
"this is some string/ddd"]
print [item.split("/")[1] for item in data]

输出

['aaa', 'bbb', 'ccc', 'ddd']

关于python - 在一些字符后替换字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21934013/

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