Say I have a string "1"
, but I want to convert it to a usable integer 1
.
Is there a way to do it?
Say I have a string "1"
, but I want to convert it to a usable integer 1
.
Is there a way to do it?
Simple google search would suffice, but yes there exists that function.
tonumber("10")
exists I believe.
Source:
Thanks, I just realized I scrolled right past it on the wiki.