HTML to Plain Text with Ruby?

后端 未结 9 2004
无人共我
无人共我 2020-12-15 18:03

Is there anything out there to convert html to plain text (maybe a nokogiri script)? Something that would keep the line breaks, but that\'s about it.

If I write som

9条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-15 18:38

    Actually, this is much simpler:

    require 'rubygems'
    require 'nokogiri'
    
    puts Nokogiri::HTML(my_html).text
    

    You still have line break issues, though, so you're going to have to figure out how you want to handle those yourself.

提交回复
热议问题