I need to convert some strings, and pull out the two first integers e.g:
unkowntext60moreunknowntext25something
To:
@width = 60
@height = 25
If I do string.to_i
, I get the first integer:, 60. I can't figure out how I get the second integer, 25. Any ideas?