아미(아름다운미소)

문자열찿기 본문

랭귀지/pandas

문자열찿기

유키공 2024. 9. 4. 10:15
df['a'] = df['a'].str.split('-to-SCP-', expand=True)[1].fillna(df['a'].str.split('--', expand=True)[0])
df['a'] = df['a'].str.split('-to-SAP-', expand=True).get(1).combine_first(df['a'].str.split('--', expand=True).get(0))
Comments