I want to replicate data frame rows by splitting the contact number, I'm trying several ways but unable to do so. Please help
Input:
df
col1 mob_no col3
a 9382949201/3245622535 45
b 8383459345/4325562678 67
c 8976247543/1827472398 89
d 7844329432 09
Expected output:
col1 mob_no col3
a 9382949201 45
a 3245622535 45
b 8383459345 67
b 4325562678 67
c 8976247543 89
c 1827472398 89
d 7844329432 09