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
 
chat.with.me
 
where the period is 'anycharacter' so
chat.with me = true
chat with me = true
chat-with-me = true
chat--with--me = false
 
or in the same case
 
chat.+with.+me
 
where the period is 'anycharacter' and the + sign means 1 or more
chat.with me = true
chat with me = true
chat-with-me = true
chat--with--me = true
 
It's just a suggestion

Reply via email to