Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Ruby Ruby Basics Numbers Converting Strings to Numbers

Rhonda Goolsby
Rhonda Goolsby
6,992 Points

string to integer

string = "123" puts string.to_i

program.rb
string = "123"
# YOUR CODE HERE
 def string("123")
  string.to_i
 end
Grigorij Schleifer
Grigorij Schleifer
10,365 Points

Hey Ronda, I have no experience with Ruby but this answer seems to explain it very well.

Rhonda Goolsby
Rhonda Goolsby
6,992 Points

Thanks Grigorij,

So close. Thank you.

1 Answer

Clayton Perszyk
MOD
Clayton Perszyk
Treehouse Moderator 48,723 Points

HI Rhonda,

If you're trying to pass the challenge, you don't need to define a method. You need to use methods built into ruby, to_i and to_f, to convert the string. Then assign the return values to two different variables, integer and float.

structure:

variable = string.method