Is there a standard function in R to convert strings representing numbers of bytes such as
- 11855276K
- 113M
- 2.40G
to integer numbers of bytes?
I came across humanReadable
in the package gdata, but this does the conversion the other way round. I know that I can parse the string and then do the maths myself, but I wondered whether something exists already.