Hi,
> [...] this will work [...]
Yes (http://community.smartbear.com/t5/Desktop-Testing/reguler-expressions/m-p/111227#M4700)with two notes:
a) (Due to some TC regex specifics?) instead of
(Error|Aggregate|Tax_Averag|combin).*(Error|Aggregate|Tax_Averag|combin).*(Error|Aggregate|Tax_Averag|combin).*(Error|Aggregate|Tax_Averag|combin)
it must be
(Error)|(Aggregate)|(Tax_Averag)|(combin).*(Error)|(Aggregate)|(Tax_Averag)|(combin).*(Error)|(Aggregate)|(Tax_Averag)|(combin).*(Error)|(Aggregate)|(Tax_Averag)|(combin)
b) This makes regex expression much longer and far less obvious as for its logic.
So it looks like that support for regex lookahead assertions in TC would be a great thing...