$_ = 'some random text
My Text I want to grab 1
some of stuff
My Text I want to grab 2 some other random text
My Text I want to grab 3'; my @wants = /
(.+?)<\/B><\/FONT>/g; print "$_\n" for @wants;