请用代码实现返回最后一个/ 后的内容 截取 https://th.wallhaven.cc/small/49/49peox.jpg
时间: 2023-07-19 17:19:07 浏览: 83
tuixiangzi.txt
好的,您可以使用 Python 的字符串切片来实现这个功能。
以下是一个示例代码:
```python
url = "https://th.wallhaven.cc/small/49/49peox.jpg"
# 找到最后一个 / 的位置
last_slash_index = url.rfind("/")
if last_slash_index != -1:
# 截取后面的字符串
result = url[last_slash_index + 1:]
print(result)
else:
print("URL 格式不正确")
```
这个代码会输出 `49peox.jpg`,即 URL 最后一个 / 后面的内容。
阅读全文