#* http://rosettacode.org/wiki/Increment_a_numerical_string
  Increment a string containing an integer
*#

#Convert to integer, increment, then back to string
p ("100".to_i + 1).to_s  #Prints 101