Pandas的str.replace的开启正则表达式

新版本的pandas的str.replace需要增加正则参数

import pandas as pd

df = pd.DataFrame(
    data={
        "name": ["2023年07月27日", "2023年07月28日", "2023年07月29日"]
    }
)
print(df)

df["name"] = df["name"].str.replace("[年月日]", "", regex=True)
print(df)

https://pandas.pydata.org/docs/reference/api/pandas.Series.str.replace.html

file

Leave a Comment