Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to convert integer into string by using as.character function in R. But I need the string to be always of length 3. So 7 will get converted into 007, 10 into 010 and so on. I am wondering if there is some simple modification of as.character (or any other built-in R routine) which will quickly accomplish this.

share|improve this question
If you think any answer is correct, please mark it by clicking the grey check mark - it should turn green. – Roman Luštrik Jan 10 at 9:20

2 Answers

up vote 10 down vote accepted

See ?sprintf:

R> sprintf("%03d", c(7, 10))
[1] "007" "010"
share|improve this answer
This is why is absolutely love SO. Thanks. – hardikudeshi Jan 10 at 7:38
3  
Love = Mark it as an answer – Dieter Menne Jan 10 at 8:22
Green tick mark below the upvote counter – Paul Hiemstra Jan 10 at 8:27

Another possibility:

formatC(c(7, 10), width=3, flag="0")
# [1] "007" "010"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.