I have a column that has 5 numbers then a dash then another 5 numbers for example 44004-23323. I would like to remove that dash in the middle. I would like the output to be something like this 44004023323 I have tried this code below but its not working.
df['Lane'] = df['Lane'].apply(lambda x: "0" if x == "-" else x)