Ruby运算符重载

class String
	def - str
		self.gsub(str, "")
	end
end
puts "Hello" - "H"

编程技巧