Convert string with comma to integer

后端 未结 7 1739
我寻月下人不归
我寻月下人不归 2020-12-25 09:26

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 #=> 11         


        
相关标签:
7条回答
  • 2020-12-25 10:05

    I would do using String#tr :

    "1,112".tr(',','').to_i # => 1112
    
    0 讨论(0)
提交回复
热议问题