python 处理字符串找到指定字符串之前以及指定字符串之后的内容
时间: 2023-08-24 17:06:27 浏览: 207
Python字符串处理实例详解
可以使用字符串的 `find()` 方法找到指定字符串的位置,然后使用字符串的切片操作获取指定字符串之前和之后的内容。示例代码如下:
```python
s = "hello world, python is awesome"
target = "python"
# 找到指定字符串的位置
pos = s.find(target)
if pos != -1:
# 获取指定字符串之前的内容
before = s[:pos]
print("before:", before)
# 获取指定字符串之后的内容
after = s[pos+len(target):]
print("after:", after)
else:
print("target not found")
```
输出结果如下:
```
before: hello world,
after: is awesome
```
阅读全文