gpt4 book ai didi

python - python中的分区字符串并获取冒号后最后一段的值

转载 作者:IT老高 更新时间:2023-10-28 21:55:59 27 4
gpt4 key购买 nike

本例中我需要获取最后一个冒号后面的值 1234567

client:user:username:type:1234567

我不需要字符串中的任何其他内容,只需要最后一个 id 值。

最佳答案

result = mystring.rpartition(':')[2]

如果您的字符串没有任何 :,则结果将包含原始字符串。

应该稍微慢一点的替代方法是:

result = mystring.split(':')[-1]

关于python - python中的分区字符串并获取冒号后最后一段的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6169324/

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