I am looking f开发者_运维知识库or an easy way to reverse an integer in erlang. Example: 1234 to 4321.
You can use some of the built in functions to do this easily.
1> list_to_integer(lists:reverse(integer_to_list(1234))).
4321
I am looking f开发者_运维知识库or an easy way to reverse an integer in erlang. Example: 1234 to 4321.
You can use some of the built in functions to do this easily.
1> list_to_integer(lists:reverse(integer_to_list(1234))).
4321
精彩评论