Since old programmers never die, they just flip their bits...and Unix people...I won't go there...
I have a suggestion for our declude creators out there.
 
Under filters you can use CONTAINS, STARTSWITH, ENDSWITH or IS on any of the pieces of an email. I wouldn't mind
seeing a MATCHES qualifier which you could put a Full Regular _expression_ in with.
 
Then you use a statement like (for those not knowing regualar expressions)
 
x.y.z
 
where the period is 'anycharacter' so
x.y z = true
x y z = true
x-y-z = true
x--y--z = false
x t z = false
 
or in the same case
 
x.+y.+z
 
where the period is 'anycharacter' and the + sign means 1 or more
x.y z = true
x y z = true
x-y-z = true
x--y--z = true
xy--z = false
 
all someone would have to do is link in
vbscript.dll to make it work.

Reply via email to