说起来不怕人笑话,我今天才发现,python 中的字符串替换操作,也就是 string.replace() 是可以用正则表达式的。
python
字符串替换操作
string.replace()
正则表达式
之前,我的代码写法如下,粗笨:
自从发现了正则表达式也生效后,代码变得优雅简洁:
备注:上图中的base_info 是 pandas 里的 dataframe 数据结构,可以用上述方法使用 string 的 replace 方法。
base_info
pandas
dataframe
string
replace