Class: String

Inherits:
Object show all
Defined in:
lib/http_crawler/common/string.rb

Instance Method Summary collapse

Instance Method Details

#del_interObject

清除干扰数据清除包含: 空格,回车



6
7
8
# File 'lib/http_crawler/common/string.rb', line 6

def del_inter
  self.gsub(/(?:\n|\t| )/,"")
end