Remove HTML from String?

I can't find a method to remove HTML from a string in the core API. PHP
has something called strip_tags. Does Ruby have anything like this?
http://us3.php.net/manual/en/function.strip-tags.php

A regular expression can strip the HTML tags from any string...

I use this

# Get the html data in a string by any method
html_string = get_html_method

# strip all the html tags from the html data
html_string.gsub!(/(<[^>]*>)|\n|\t/s) {" "}

this may not be the best way, (robust or fast) but is enough for my needs.

Horacio

Monday 09 January 2006 17:38、jotto さんは書きました:

···

I can't find a method to remove HTML from a string in the core API. PHP
has something called strip_tags. Does Ruby have anything like this?
http://us3.php.net/manual/en/function.strip-tags.php

Not built in. It's not really appropriate for the core language.
That's one of the things that makes PHP easy to use for people who are
trying to do simple things, but makes it hard when you get into
engineering and maintaining real programs. As was suggested by the
other respondent, it's relatively easy to remove:

  a.gsub(%r{</?[^>]+?>}, '')

-austin

···

On 09/01/06, jotto <jonathan.otto@gmail.com> wrote:

I can't find a method to remove HTML from a string in the core API. PHP
has something called strip_tags. Does Ruby have anything like this?
PHP: strip_tags - Manual

--
Austin Ziegler * halostatue@gmail.com
               * Alternate: austin@halostatue.ca

jotto wrote:

I can't find a method to remove HTML from a string in the core API. PHP
has something called strip_tags. Does Ruby have anything like this?
http://us3.php.net/manual/en/function.strip-tags.php

Here is a gem for sanitizing strings Sanitize: A whitelist-based Ruby HTML sanitizer - wonko.com

···

--
Posted via http://www.ruby-forum.com/\.

I hate regex. I've written some ruby functions to remove html tags in
blocks and not just special characters... also rules for swapping html
code for anything else is included. Example <br> will be swapped out
for \n with existing rules. My code is available at
https://github.com/6ftDan/regex-is-evil

···

--
Posted via http://www.ruby-forum.com/.

...just pray that the HTML you are modifying is valid, and not some garbage file that web browsers happen to treat as intended. For example, watch the above regexp go to town on some invalid HTML:

class String
  def strip_tags
    self.gsub( %r{</?[^>]+?>}, '' )
  end
end

source = <<ENDHTML
<html><body>
<p>I'm pretending to know how to code. I <3 HTML, it's teh best!!!!</p>
<script>
for ( i=0; i<10; i++ ){ document.write(i+'<br>') }
</script>
BLASTOFFS!!!!
</body>
ENDHTML

puts source.strip_tags
#=> I'm pretending to know how to code. I
#=>
#=> for ( i=0; i') }
#=>
#=> BLASTOFFS!!!!

···

On Jan 9, 2006, at 5:57 AM, Austin Ziegler wrote:

On 09/01/06, jotto <jonathan.otto@gmail.com> wrote:

I can't find a method to remove HTML from a string in the core API. PHP
has something called strip_tags. Does Ruby have anything like this?
http://us3.php.net/manual/en/function.strip-tags.php

Not built in. It's not really appropriate for the core language.
That's one of the things that makes PHP easy to use for people who are
trying to do simple things, but makes it hard when you get into
engineering and maintaining real programs. As was suggested by the
other respondent, it's relatively easy to remove:

  a.gsub(%r{</?[^>]+?>}, '')

What a mess. This is extremely inefficient. You create new strings
all the time. You go over the string multiple times. You do not pass
start and end index down to strip_seq(). There is no test which
ensures start index is lower than end index (try with string ">foo<").

I'd prefer a regexp solution anytime. It's likely faster and easier
to read - for me at least. Btw. /x goes a long way at making a regexp
more readable - you can even include comments. Just a simple example:

But proper tool is of course a HTML parser like Nokogiri.

Kind regards

robert

···

On Tue, Jun 12, 2012 at 4:39 AM, Daniel P. C. <lists@ruby-forum.com> wrote:

I hate regex. I've written some ruby functions to remove html tags in
blocks and not just special characters... also rules for swapping html
code for anything else is included. Example <br> will be swapped out
for \n with existing rules. My code is available at
https://github.com/6ftDan/regex-is-evil

--
remember.guy do |as, often| as.you_can - without end
http://blog.rubybestpractices.com/

Gavin Kistner <gavin@refinery.com> writes:

>> I can't find a method to remove HTML from a string in the core
>> API. PHP
>> has something called strip_tags. Does Ruby have anything like this?
>> http://us3.php.net/manual/en/function.strip-tags.php
>
> Not built in. It's not really appropriate for the core language.
> That's one of the things that makes PHP easy to use for people who are
> trying to do simple things, but makes it hard when you get into
> engineering and maintaining real programs. As was suggested by the
> other respondent, it's relatively easy to remove:
>
> a.gsub(%r{</?[^>]+?>}, '')

..just pray that the HTML you are modifying is valid, and not some
garbage file that web browsers happen to treat as intended.

More like, "Just pray the HTML you are modifying doesn't happen to be
completely valid, but not formed in exactly the way you are
expecting." For instance, the following HTML snippet is completely
valid, but screws up the regex:

<p>a <img src="greaterthan.gif" alt=">" /> b</p>

irb(main):010:0> a='<p>a <img src="greaterthan.gif" alt=">" /> b</p>'
=> "<p>a <img src=\"greaterthan.gif\" alt=\">\" /> b</p>"
irb(main):011:0> a.gsub(%r{</?[^>]+?>}, '')
=> "a \" /> b"

Finding other such examples is an exercise for the reader. This sort
of thing is why, as a rule, I avoid parsing HTML with regexes.

-=Eric

···

On Jan 9, 2006, at 5:57 AM, Austin Ziegler wrote:
> On 09/01/06, jotto <jonathan.otto@gmail.com> wrote:

If you're concerned about prevent browsers from rendering the HTML in your string, replacing < and > with &lt; and &gt; symbols is more affective than trying to remove the tags.

~ ryan ~

Actually, that is *not* completely valid, at least not valid XHTML
(which is what I use these days). You have to do that as:

  <p>a <img src="greaterthan.gif" alt="&gt;" /> b</p>

But my regexp wasn't intended to be complete; there are full libraries
out there for that.

-austin

···

On 09/01/06, Eric Schwartz <emschwar@mail.ericschwartz.us> wrote:

More like, "Just pray the HTML you are modifying doesn't happen to be
completely valid, but not formed in exactly the way you are
expecting." For instance, the following HTML snippet is completely
valid, but screws up the regex:

<p>a <img src="greaterthan.gif" alt=">" /> b</p>

--
Austin Ziegler * halostatue@gmail.com
               * Alternate: austin@halostatue.ca

Austin Ziegler <halostatue@gmail.com> writes:

> More like, "Just pray the HTML you are modifying doesn't happen to be
> completely valid, but not formed in exactly the way you are
> expecting." For instance, the following HTML snippet is completely
> valid, but screws up the regex:
>
> <p>a <img src="greaterthan.gif" alt=">" /> b</p>

Actually, that is *not* completely valid, at least not valid XHTML
(which is what I use these days).

When wrapped with the appropriate tags, it validated HTML 4.01, which
is what I recommend most people generate these days (because of some,
but not all, of the reasons elucidated at
http://codinginparadise.org/weblog/2005/08/xhtml-considered-harmful.html\).
So yes, it is valid HTML, which is all I claimed it to be.

I specifically didn't mention XHTML, since the bits of the thread I
saw referenced HTML, and they're enough different I figured XHTML
would have been mentioned if that's what was wanted. Of course with
XHTML, you have CDATA sections, which can contain all sorts of
nastiness that can trip you up just as badly.

You have to do that as:
  <p>a <img src="greaterthan.gif" alt="&gt;" /> b</p>

But my regexp wasn't intended to be complete; there are full libraries
out there for that.

Right; my point was that in my experience, regexes seem to work just
fine, until suddenly they don't, and then you have to spend silly
amounts of time compensating for them-- or you could just use a proper
library in the first place, and not have to worry about it.

-=Eric

···

On 09/01/06, Eric Schwartz <emschwar@mail.ericschwartz.us> wrote:

i like this code i found, i did not make but found. and i wish i could give
credit to who created it but i lost the website

require 'cgi'

def html2text html
  text = html.
    gsub(/(&nbsp;|\n|\s)+/im, ' ').squeeze(' ').strip.
    gsub(/<([^\s]+)[^>]*(src|href)=\s*(.?)([^>\s]*)\3[^>]*>\4<\/\1>/i, '\4')

  links =
  linkregex = /<[^>]*(src|href)=\s*(.?)([^>\s]*)\2[^>]*>\s*/i
  while linkregex.match(text)
    links << $~[3]
    text.sub!(linkregex, "[#{links.size}]")
  end

  text = CGI.unescapeHTML(
    text.
      gsub(/<(script|style)[^>]*>.*<\/\1>/im, '').
      gsub(/<!--.*-->/m, '').
      gsub(/<hr(| [^>]*)>/i, "___\n").
      gsub(/<li(| [^>]*)>/i, "\n* ").
      gsub(/<blockquote(| [^>]*)>/i, '> ').
      gsub(/<(br)(| [^>]*)>/i, "\n").
      gsub(/<(\/h[\d]+|p)(| [^>]*)>/i, "\n\n").
      gsub(/<[^>]*>/, '')
  ).lstrip.gsub(/\n+/, "\n") + "\n"

  for i in (0...links.size).to_a
    text = text + "\n [#{i+1}] <#{CGI.unescapeHTML(links[i])}>" unless
links[i].nil?
  end
  links = nil
  text
end

input =" <h1>Title</h1> This is the body. Testing <a href='
http://www.google.com/&#39;&gt;link to Google</a>.<p /> Testing image <img
src='/noimage.png'>.<br /> The End."

print html2text(input)

···

On 1/10/06, Eric Schwartz <emschwar@mail.ericschwartz.us> wrote:

Austin Ziegler <halostatue@gmail.com> writes:
> On 09/01/06, Eric Schwartz <emschwar@mail.ericschwartz.us> wrote:
> > More like, "Just pray the HTML you are modifying doesn't happen to be
> > completely valid, but not formed in exactly the way you are
> > expecting." For instance, the following HTML snippet is completely
> > valid, but screws up the regex:
> >
> > <p>a <img src="greaterthan.gif" alt=">" /> b</p>
>
> Actually, that is *not* completely valid, at least not valid XHTML
> (which is what I use these days).

When wrapped with the appropriate tags, it validated HTML 4.01, which
is what I recommend most people generate these days (because of some,
but not all, of the reasons elucidated at
http://codinginparadise.org/weblog/2005/08/xhtml-considered-harmful.html\).
So yes, it is valid HTML, which is all I claimed it to be.

I specifically didn't mention XHTML, since the bits of the thread I
saw referenced HTML, and they're enough different I figured XHTML
would have been mentioned if that's what was wanted. Of course with
XHTML, you have CDATA sections, which can contain all sorts of
nastiness that can trip you up just as badly.

> You have to do that as:
> <p>a <img src="greaterthan.gif" alt="&gt;" /> b</p>
>
> But my regexp wasn't intended to be complete; there are full libraries
> out there for that.

Right; my point was that in my experience, regexes seem to work just
fine, until suddenly they don't, and then you have to spend silly
amounts of time compensating for them-- or you could just use a proper
library in the first place, and not have to worry about it.

-=Eric