Hello,
I've had good luck using NewsBin 3.32 regular expressions. Now I'm trying to get a little more fancy. I am trying to block subject lines containing palindrome phrases like this:
"** word1 word2 word1 **"
In this case, I want to match a literal asterisk. In perl, you do this by quoting the asterisk with the backslash character. Like this:
"\*\* word1 word2 word1 \*\*"
However this does not work for me in NewsBin. In fact I can't get any regex to work using backslash to quote the asterisk character. How do you do it?