Python:替换Dataframe中的字母数字值

时间:2018-05-11 00:45:03

标签: python regex dataframe character

在我试图删除的单词的开头,我没有使用\ t和\ r的单词而不删除实际的单词。

例如"\tWant to go to the mall.\rTo eat something."

我已经在三天内尝试了一些东西。它是一个Pandas Dataframe,所以我认为这个答案最好:

Pandas DataFrame: remove unwanted parts from strings in a column

但是根据我自己的解决方案制定的方法是行不通的。

i = df['Column'].replace(regex=False,inplace=False,to_replace='\t',value='')

我不想使用正则表达式,因为表达式很难让我试图去除' \ t'如果可能的话还要' \ r'。

这是我的正则表达式:https://regex101.com/r/92CUV5/5

0 个答案:

没有答案