python 提取字符串倒数第二行的文本
时间: 2023-10-09 22:13:04 浏览: 161
python在TXT文件中按照某一字符串取出该字符串所在的行方法
要提取字符串的倒数第二行文本,你可以使用以下方法:
```python
def extract_second_last_line(text):
= text.split('\n')
if len(lines) >= 2:
return lines[-2]
else:
return None
text = '''
Hello
This is the first line.
This is the second line.
This is the third line.
'''
second_last_line = extract_second_last_line(text)
print(second_last_line)
```
在这个例子中,我们首先将字符串按行分割成一个列表,然后通过索引 `-2` 来获取倒数第二行的文本。
阅读全文