Reputation: 33
I am looking for an easy way to reverse an integer in erlang. Example: 1234 to 4321.
Upvotes: 3
Views: 492
Reputation: 6382
You can use some of the built in functions to do this easily.
1> list_to_integer(lists:reverse(integer_to_list(1234))).
4321
Upvotes: 11