in reply to Re^2: Get chars between 2 markers using regular expressions
in thread Get chars between 2 markers using regular expressions

You'll want to make a couple of passes. The first one should split on He\d. That will give you a separate string to turn into each array. For each of those strings, you can use your Te regex to extract what you're looking for.

Caution: Contents may have been coded under pressure.