gpt4 book ai didi

python - 从 Pandas 列中删除字符

转载 作者:太空宇宙 更新时间:2023-11-04 02:51:22 25 4
gpt4 key购买 nike

我试图简单地从 pandas 专栏系列的开头和结尾删除“(”和“)”。到目前为止,这是我最好的猜测,但它只返回 () 完好无损的空字符串。

postings['location'].replace('[^\(.*\)?]','', regex=True)

该列如下所示: screenshot of jupyter notebook

最佳答案

工作示例

df = pd.DataFrame(dict(location=['(hello)']))

print(df)

location
0 (hello)

@Psidom 的解决方案
str.strip

df.location.str.strip('()')

0 hello
Name: location, dtype: object

选项 2
str.extract

df.location.str.extract('\((.*)\)', expand=False)

0 hello
Name: location, dtype: object

选项 3
str.replace

df.location.str.replace('\(|\)', '')

0 hello
Name: location, dtype: object

选项 4
替换

df.location.replace('\(|\)', '', regex=True)

0 hello
Name: location, dtype: object

关于python - 从 Pandas 列中删除字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43768023/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com