Hi friend~
I want get the content between the first html tag and the second html tag.
for example <p>Hello <bold>world</bold>!</p> will return Hello

What should I do in Ruby?
Thank you~

link|improve this question

62% accept rate
2  
Have you tried Nokogiri? it's a lot easier than using regexes to parse HTML – ryudice Jan 31 '11 at 14:50
feedback

2 Answers

up vote 1 down vote accepted

Regex will be: <[^>]*>([^<]*)

  1. <[^>]*> - math thiw first tag "<...>"
  2. ([^<]*) - capture text to open next tag "<...> some text <...>"

how apply him on Rubby - i dont know

look http://www.regular-expressions.info/ruby.html

link|improve this answer
feedback

A regular expression catching everthing between the first and the second pair of angle brackets lools like

/<.*?>(.*?)</m

The result will be in the first capturing group of the first match.

Note that this will probably fail on HTML comments and JavaScript.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.