Amended on Tue 22 Nov 2011 08:35 AM (UTC) by Twisol
Message
There are two immediate possibilities. One: use regex lookbehind/lookahead, effectively matching the [ and ] without including them. That would look like \b(?<=\[)Cockatrice(?=\])\b if I'm not mistaken. Possibly the simplest solution here, but it might not work well in more general cases. (Info on lookaround here: http://www.regular-expressions.info/lookaround.html)
A more general solution would be having two triggers. The first matches [Cockatrice], but doesn't do anything to it. Instead, it enables the second trigger, which only matches Cockatrice (and only once on the line), highlights it, then disabling itself.
([EDIT]: Reading your solution below, and re-reading the problem above, I think I misinterpreted the issue. :/ )
If I try to get it to just highlight Cockatrice without the brackets in the trigger - it will highlight every instance of the word. I want it to highlight the Cockatrice com channel only; thus, I need it to detect and highlight those brackets too. I've tried everything I can think of - including searching all over the forum and help and just can't get it to work. Thanks in advance for the help!
The dates and times for posts above are shown in Universal Co-ordinated Time (UTC).
To show them in your local time you can join the forum, and then set the 'time correction' field in your profile to the number of hours difference between your location and UTC time.