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