"Rules": How to specify string?

P

Paul Berkowitz

Is there a way in "Rules" to limit a string to a space-delimited string?

For example, blocking "iCal" also blocks "technical".

Type a space. It works. (You mean you didn't try it before asking? Tsk. ;-))
I even block subjects containing " " (no quotes).

Most other text fields (e,g, in contacts) remove leading and trailing
spaces, but not Rules.

You should have a Match <if ANY>, and as well as

<Subject> <Contains> <iCal >

you should also have

<Subject> <Ends with> <iCal>

because that one won't have a space at the end.

Neither will catch "technical".

--
Paul Berkowitz
MVP Entourage
Entourage FAQ Page: <http://www.entourage.mvps.org/toc.html>
AppleScripts for Entourage: <http://macscripter.net/scriptbuilders/>

Please "Reply To Newsgroup" to reply to this message. Emails will be
ignored.

PLEASE always state which version of Entourage you are using - 2001 or X.
It's often impossible to answer your questions otherwise.
 
B

Barry N. Wainwright

<Subject> <Ends with> <iCal>

because that one won't have a space at the end.

Neither will catch "technical".

I think it will ??

--
Barry Wainwright
Microsoft MVP (see http://mvp.support.microsoft.com for details)
Seen the Entourage FAQ pages? - Check them out:
<http://www.entourage.mvps.org/toc.html>

Please post responses to this newsgroup. If I ask you to contact me
off-list, remove '.INVALID' from email address before replying.
 
G

Gnarlodious

Entity Barry N. Wainwright spoke thus:
I think it will ??
Works here!
Trying it on the comp.sys.mac.system group it blocks ""iCal" but allows:

Technical
Optical
Automatically
medical
programmatically
political
magically

Thanks, Paul!

-- Gnarlie
 
P

Paul Berkowitz

I think it will ??

Oopps, sorry, the last one will, if "technical" is the last word. I meant to
say:

<Subject> <Ends with> < iCal>

with a space at the beginning. These two conditions (<ANY>) should take care
of things:

<Subject> <Contains> <iCal > -- space at end
<Subject> <Ends with> < iCal> -- space at beginning



--
Paul Berkowitz
MVP Entourage
Entourage FAQ Page: <http://www.entourage.mvps.org/toc.html>
AppleScripts for Entourage: <http://macscripter.net/scriptbuilders/>

Please "Reply To Newsgroup" to reply to this message. Emails will be
ignored.

PLEASE always state which version of Entourage you are using - 2001 or X.
It's often impossible to answer your questions otherwise.
 
Top