fork download
  1. x <- c("1529 33ER TAXI AG", "2384 4EYES GMBH")
  2. gsub("^(\\d+)([[:space:]])(.+)$","\\3",x)
Success #stdin #stdout 0.45s 79168KB
stdin
Standard input is empty
stdout
[1] "33ER TAXI AG" "4EYES GMBH"