
Signature
Support the troops: Bring them home ASAP.
> Well, this didn't work:
> TB[0-9]+R|T[0-9]+BR
>
> It didn't filter out "TpB.R" (including the quotation marks).
It wouldn't. That filter will catch:
'TB' {any numeric string at least one character long} 'R'
or
'T' {any numeric string at least one character long} 'BR'
Neither the 'p' nor the '.' will match individually, and the pattern
doesn't allow for 'T' {blah} 'B' {blah} 'R'.
Have you tried the T.*B.*R pattern I suggested yet? (I haven't been
paying attention to the thread, so I'm not sure if you did and found it
insufficient.)

Signature
"Harry?" Ron's voice was a mere whisper. "Do you smell something ... burning?"
- Harry Potter and the Odor of the Phoenix
Michelle Steiner - 24 May 2008 13:12 GMT
> Have you tried the T.*B.*R pattern I suggested yet? (I haven't been
> paying attention to the thread, so I'm not sure if you did and found
> it insufficient.)
No, but I will right now.

Signature
Support the troops: Bring them home ASAP.
Michelle Steiner - 24 May 2008 13:14 GMT
> Have you tried the T.*B.*R pattern I suggested yet?
It works.

Signature
Support the troops: Bring them home ASAP.