gpt4 book ai didi

python - pandas:仅当点出现在字符串中的数字之后时才删除点

转载 作者:行者123 更新时间:2023-12-04 10:37:57 25 4
gpt4 key购买 nike

我有一个如下所示的数据框:

df=  pd.DataFrame(["I", "have", "5.", "apples", "."]
columns=['words'])

我只想删除数字后面的点,而不是句子末尾的点。 (5.--> 5)

我试过了

df["Words"].str.replace("\d.", "\d", regex=True)

但是它发送了一个错误。

最佳答案

以下应该有效 - 我们需要在正则表达式中使用捕获组,以便我们知道应该用什么值替换初始值。此外,我们需要使用原始字符串文字来转义正则表达式字符串中的反斜杠。

>>> df = pd.DataFrame(["I", "have", "5.", "apples", "."],
columns=['words'])
>>> df["words"].str.replace(r"(\d)\.", r"\1")
0 I
1 have
2 5
3 apples
4 .
Name: words, dtype: object

关于python - pandas:仅当点出现在字符串中的数字之后时才删除点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60075404/

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