本文介绍了将逗号转换为整数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否有任何简洁的方法将1,112转换为整数1112而不是1?
Is there any neat method to convert "1,112" to integer 1112, instead of 1?
我有一个,但不是很整洁:
I've got one, but not neat:
"1,112".split(',').join.to_i #=> 1112
推荐答案
这个怎么样?
"1,112".delete(',').to_i
这篇关于将逗号转换为整数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!