pandas使用正则表达式从后面提取一个字符串
时间: 2024-05-25 20:19:41 浏览: 45
利用正则表达式提取固定字符之间的字符串
3星 · 编辑精心推荐
好的,关于您的问题,可以使用pandas中的str.extract()函数来提取字符串。具体操作可以参考以下代码:
import pandas as pd
df = pd.DataFrame({'text':['hello world', 'python is great', 'I love pandas']})
df['last_word'] = df['text'].str.extract(r'(\w+)\s*$')
print(df)
输出结果为:
text last_word
0 hello world world
1 python is great great
2 I love pandas pandas
希望能对您有所帮助。
阅读全文