pandas对具体列的内容通过正则表达式进行数据提取

  1. 使用前要确保该列的类型统一,str或者float格式,最好事先通过astype强制转换一下;

  2. df[‘new_col’] = df[‘selected_col’].str.extract(‘正则表达式’, expand = True)

你可能感兴趣的:(pandas,Python)