gpt4 book ai didi

python - 将python中的字符串减少到特定点

转载 作者:太空宇宙 更新时间:2023-11-04 06:46:36 24 4
gpt4 key购买 nike

我的 python 应用程序中有这样的字符串:

test1/test2/foo/

每次得到这样一个字符串,我都想缩减它,从尾部开始缩减到第一个“/”。

test1/test2/

更多例子:

foo/foo/foo/foo/foo/  => foo/foo/foo/foo/
test/test/ => test/
how/to/implement/this => how/to/implement/

如何在 python 中实现它?

提前致谢!

最佳答案

听起来像 os.path.dirname功能可能是你正在寻找的。您可能需要多次调用它:

>>> import os.path
>>> os.path.dirname("test1/test2/")
'test1/test2'
>>> os.path.dirname("test1/test2")
'test1'

关于python - 将python中的字符串减少到特定点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2145371/

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