Notice: Any messages purporting to come from this site telling you that your password has expired, or that you need to verify your details, confirm your email, resolve issues, making threats, or asking for money, are
spam. We do not email users with any such messages. If you have lost your password you can obtain a new one by using the
password reset link.
Due to spam on this forum, all posts now need moderator approval.
Entire forum
➜ MUSHclient
➜ General
➜ Highlighting when brackets involved?
Highlighting when brackets involved?
|
It is now over 60 days since the last post. This thread is closed.
Refresh page
Posted by
| Hurriedcorgi
USA (6 posts) Bio
|
Date
| Tue 22 Nov 2011 07:47 AM (UTC) Amended on Tue 22 Nov 2011 07:48 AM (UTC) by Hurriedcorgi
|
Message
| Here is the trigger:
<triggers>
<trigger
custom_colour="17"
enabled="y"
group="Highlighted Words"
ignore_case="y"
keep_evaluating="y"
match="\b\[Cockatrice\]\b"
regexp="y"
repeat="y"
sequence="90"
other_text_colour="yellow"
>
</trigger>
</triggers>
The output (and problem):
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! | Top |
|
Posted by
| Twisol
USA (2,257 posts) Bio
|
Date
| Reply #1 on Tue 22 Nov 2011 08:29 AM (UTC) 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. :/ ) |
'Soludra' on Achaea
Blog: http://jonathan.com/
GitHub: http://github.com/Twisol | Top |
|
Posted by
| Hurriedcorgi
USA (6 posts) Bio
|
Date
| Reply #2 on Tue 22 Nov 2011 08:31 AM (UTC) |
Message
| Works perfect. Took me forever to figure out but it's this simple.
<triggers>
<trigger
custom_colour="17"
enabled="y"
group="Highlighted Words"
ignore_case="y"
keep_evaluating="y"
match="\[Cockatrice\]"
regexp="y"
repeat="y"
sequence="90"
other_text_colour="cadetblue"
>
</trigger>
</triggers>
| Top |
|
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.
13,704 views.
It is now over 60 days since the last post. This thread is closed.
Refresh page
top