in reply to Select data between a START and END pattern

If I understand what you want, then the .. and ... operators are not at all appropriate. I think you want:
if (/\d+\s(.*)\sseconds/) { print "Test Data: $1\n"; }