I have a large vector of strings of the form:
Input = c(\"1,223\", \"12,232\", \"23,0\")
etc. That\'s to say, decimals separated by commas,
as.numeric(sub(",", ".", Input, fixed = TRUE))
should work.