如何在DataFrame的字符串列中应用正则表达式替换?

时间:2015-09-09 19:12:32

标签: python regex pandas dataframe substitution

我有一个名为“Animals”的DataFrame,如下所示:

 Words
 The Black Cat
 The Red Dog

我想在每个单词前添加一个加号,使它看起来像这样:

 Words
 +The +Black +Cat
 +The +Red +Dog

我使用正则表达式尝试了这个但是它不起作用:

 df = re.sub(r'([a-z]+)', r'+\1', Animals)

1 个答案:

答案 0 :(得分:5)

您可以使用str.replace和以下正则表达式对列的所有行进行更改:

df.Words = df.Words.str.replace(r'(\b\S)', r'+\1')

DataFrame看起来像这样:

>>> df
              Words
0  +The +Black +Cat
1    +The +Red +Dog