in reply to How do I extract all text between two keywords like start and end?

($content) = $string =~ m/ start (.*) end /;
That will get the stuff between " start " and " end " into $content.
  • Comment on Re: How do I extract all text between two keywords like start and end?
  • Download Code