in reply to Seach for data that is on a different line from the search string

EDIT: Scratch this answer... I assumed all data on the same line, completely somehow ignoring the title :) Need to see a sample of the actual data in code blocks to better understand.

perl -nE 'say $1 if /\b0x014E\b/ && /.*(Output.*?)\s[^\d]/;' data.txt
  • Comment on Re: Seach for data that is on a different line from the search string
  • Download Code