quote:
Originally posted by ZimperZ
This will fix your problem:
1. Change "Type" from Fragment to RegExps
2. Change the Receive from cake to ^cake$
That won't actually do the same.
The "^cake$" regular expression would only match when the message consists of only and nothing more than the word "cake". A better regular expression would be:
code:
(^|\W)cake(\W|$)
This would match "cake" as a single word. Although, I have no idea whether this could actually fix the problem where only the matched part gets replaced...