我正在尝试从 python 数据帧中返回第二个下划线后获取数据?
number
0 a_bc_def 12_23_this_6729
1 abc_def,122$3_this_6729
2 abc_def_1_2_23_this_6729
number
0 this_6729
1 this_6729
2 this_6729
我试图从一开始就从第二个下划线获取数据。
df['number'] = df['number'].str.split('_',2).apply(lambda x: x[-1])
如何从后面的第二个下划线开始?
富国沪深
Smart猫小萌
相关分类