I want to remove the date part from the first column but can't do it for all the dataset?
can someone advise please?
Example of dataset:

I want to remove the date part from the first column but can't do it for all the dataset?
can someone advise please?
Example of dataset:

You can use sub() function with replacing ^[^[:alpha:]]+ (regular expression, i.e. all non-alphabetic characters at the beginning of the string), with "", i.e. empty string.
sub("^[^[:alpha:]]+", "", data)
data <- data.frame(
  good_column = 1:4,
  bad_column = c("13/1/2000pasta", "14/01/2000flour", "15/1/2000aluminium foil", "15/1/2000soap"))
data
#>   good_column              bad_column
#> 1           1          13/1/2000pasta
#> 2           2         14/01/2000flour
#> 3           3 15/1/2000aluminium foil
#> 4           4           15/1/2000soap
data$bad_column <- sub("^[^[:alpha:]]+", "", data$bad_column)
data
#>   good_column     bad_column
#> 1           1          pasta
#> 2           2          flour
#> 3           3 aluminium foil
#> 4           4           soap
Created on 2020-07-29 by the reprex package (v0.3.0)