facebook twitter hatena line email

Ruby/キャスト

提供: 初心者エンジニアの簡易メモ
移動: 案内検索

文字から数字へ

s = "1234"
puts s.to_i # 1234

数字から文字へ

puts 1234.to_s # "1234"