Ruby Tri Array Numerically
a.sort_by(&:to_i)
Beautiful Bear
a.sort_by(&:to_i)
a = ["teste", "test", "teste2", "tes3te", "10teste"]
a.sort_by! {|s| s[/\d+/].to_i}