quote:
Originally posted by Death4ngel
Hmm.. I need help. Under the receive section of the MSN bot, I put "can see?" without the " ". but it responds to "can see". Is there a way to make "can see?" as a whole. or is the " " can be used to make it a whole just like search engines?
Well, if you want to let it respond on "can see?", you should escape the "?" character, like this:
code:
/can\ssee\?/
The "\s" stands for
any whitespace, which can be a space (ascii 32), a newline, a carriage return or a tab character. If you only want your users to be able to use a "regular" space, replace "\s" with " " in the code above.