ruby怎么取html代码中的img标签

2019-04-15 14:04发布

##取html代码中的第一张图片
def get_pic
con=""
if self.content!=nil
self.content=self.content.force_encoding('utf-8')
con=/(/.match(self.content)
con=con.to_s.split("/>")[0]+"/>"
return con.html_safe
else
return ""
end
end