My question is simple, here is the line:
<title><* page.title *></title>
i want to get the "page.title" part. I can do that by using these:
replacement = line.match(/\<\* .* \*\>/)
replacement_contain = replacement.to_s.match(/ .* /).to_s.strip
is there any shortcut or better way to do this ?