Ruby运算符重载

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

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