From: Jim Clark Date: 2008-01-03T12:37:30+09:00 Subject: Re: hpricot - parse html Try this... C:\temp>irb irb(main):001:0> mystring = "xxx yy zz" => "xxx yy zz" irb(main):002:0> mystring.gsub(//,'') => "xxx yy zz" Regards, Jim K. R. wrote: > hi @all > > I would like to parse html code and remove all tags that starts with > > > How can I remove this tags with regex? I used the gsub! function to > manipulate the string. > > Thanks for helping... >