r remove all string before : in r data frame

# Assuming your data frame is named 'df' and the column you want to modify is named 'your_column'
df$your_column <- sub(".*:", "", df$your_column)