Robert Klemme
1/4/2006 10:51:00 AM
keal wrote:
> i have html-text. i have to convert this text to simple text without
> html-tags.
This is a very low cost variant - I guess the lynx approach is much more
effective and complete:
ruby -pe 'gsub! %r{</?.*?>}, ""' index.html
Kind regards
robert