我需要一个函数来删除panda DataFrame中oldText
列(超过1000行)的链接。我用regex创建了这个函数,但它不起作用。这是我的代码:
def remove_links(text):
text = re.sub(r'http\S+', '', text)
text = text.strip('[link]')
return text
df['newText'] = df['oldText'].apply(remove_links)
我没有错误,代码什么也没做
1条答案
按热度按时间bkhjykvo1#
您的代码对我有效:CSV:
代码:
结果: