powered by
Function to pad a string with leading zeros. Useful for parameter codes and USGS site IDs.
zeroPad(x, padTo)
string
number Final desired length of the string
x string returned with leading zeros
# NOT RUN { pCode <- '10' correctPCode <- zeroPad(pCode,5) pCodes <- c('100','1000','0','12345','1565465465465465') correctPCodes <- zeroPad(pCodes,5) # }
Run the code above in your browser using DataLab