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

Joseph Silva
Joseph Silva
2,140 Points

We've assigned the string "123" to a variable named string. Take string, use a method to convert it to an integer, and s

Stuck.

Antonio De Rose
Antonio De Rose
20,884 Points

one video from before, this challenge, go through over and over..

2 Answers

Hi Joseph,

You want to create a new variable called integer and assign into that, using an equals sign, the result of calling the to_i method on the existing variable, string. Use dot notation.

Then you create another variable called float and do the same, but using the to_f method on string.

Let me know how you get on,.

Steve.

Joseph Silva
Joseph Silva
2,140 Points

Passed the challenge literally right after posted the question. I came to the realization that a float has a decimal.

Thank you so much for your assistance.