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~
feedback
|
|
Regex will be:
how apply him on Rubby - i dont know | |||
|
feedback
|
|
A regular expression catching everthing between the first and the second pair of angle brackets lools like
The result will be in the first capturing group of the first match. Note that this will probably fail on HTML comments and JavaScript. | |||
|
feedback
|