For example one of the row contains 9343435445/9433445532. I would like to split these and paste individual ones separately in a new column. I tried the following.
bookings <- read.csv(file = 'bookings.csv', header = T)
bookings$set1 <- as.character(bookings$set1)
bookings$set3 <- gsub('\\/..........', '',bookings$set1)
bookings$set4 <- gsub('\\d{10}\\/', ' ',bookings$set1)
But is not giving the desired output.