vote up 2 vote down star

Suppose I have a variable of type Int = 08, how can I convert this to String keeping the leading zero?

For instance:

v :: Int
v = 08

show v

Output: 8

I want the output to be "08".

Is this possible?

flag

Ops, the output is actually "8", not 8. – Nazgulled Dec 18 '08 at 5:24
Um, saying v = 08 is the same as saying v = 8 or v = 008 or v = 0000008. There is no way to get back the information of how many 0s you had defined v using. You can only print it with a certain number of 0s, as in the answer below. – ShreevatsaR Dec 18 '08 at 5:54

3 Answers

vote up 2 vote down check

Depending on what you are planning to do you might want to store the "08" as a string and only convert to int when you need the value.

link|flag
Doing opposite sounds better. Store it as int and change it to string for displaying purposes. – Vinegar Mar 30 at 4:18
vote up 4 vote down

Use Text.Printf.printf:

printf "%02d" v

Make sure to import Text.Printf.printf first.

link|flag
vote up 5 vote down

Its 8, not 08 in variable v. Yes, you assigned it 08 but it receives 8. Thats the reason show method displayed it as 8. You can use the work around given by Mipadi.

Edit:

Output of a test.

Prelude> Text.Printf.printf "%01d\n" 08
8
Prelude> Text.Printf.printf "%02d\n" 08
08
Prelude> Text.Printf.printf "%03d\n" 08
008

Output of another test.

Prelude> show 08
"8"
Prelude> show 008
"8"
Prelude> show 0008
"8"

I hope you get the point.

Edit:

Found another workaround. Try this,

"0" ++ show v
link|flag

Your Answer

Get an OpenID
or

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