Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
「4,450.50 $」という文字列があります。
この文字列の数字だけが必要です。したがって、この例では、4450.50 という数値を取得したいと考えています。
どうすれば入手できますか?
str = "4,450.50 $" Float str.scan(/[\d.]/).join # => 4450.5