其他分享
首页 > 其他分享> > 如何在DataFrame的字符串列中应用正则表达式替换?

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

作者:互联网

我有一个名为“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)

解决方法:

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

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

然后,DataFrame看起来像这样:

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

标签:substitution,python,pandas,dataframe,regex
来源: https://codeday.me/bug/20190829/1763410.html