【对csv某列进行清洗,只保留中文】基于正则的mod

it2025-01-14  8

DF['column_name'] = DF['column_name'].str.replace(r'[^\u4e00-\u9fa5]', '') # 对csv某列数据进行清洗,只保留中文
最新回复(0)