Error during command authentication.

Error - unable to initiate communication with LISTSERV (errno=10061, phase=CONNECT, target=127.0.0.1:2306). The server is probably not started. LISTSERV - MACSCRPT Archives - LISTSERV.DARTMOUTH.EDU

At 11:12 PM +1300 7/28/07, Joe Barwell wrote:
>Hello people,
>
>I have a regex question, using the Satimage osax.
>
>I am trying to ignore lines that end with the following:
>
>\tAAA\t

With Satimage osax, I'm afraid your hack is the good solution.

In Smile, you have look-ahead and look-behind assertions, so you can 
write like:

ufind text "(?<!\\tAAA)\\t" etc.

meaning: I want tab, but only if ( (? means, here is the assertion), 
before the tab (that's <), there is not (that's !, otherwise for 
"there is" it's =) tab followed by AAA.

Emmanuel