Register forum user name Search FAQ

Gammon Forum

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 ➜ short word color highlight with wildcard

short word color highlight with wildcard

It is now over 60 days since the last post. This thread is closed.     Refresh page


Posted by Essidus   (16 posts)  Bio
Date Wed 23 Jan 2008 06:15 PM (UTC)
Message
I'm trying to set up a trigger that highlights everything that ever shows up between () with darkmagenta, but only the () and the text between them, and not the whole line. I've tried the regular expression \(\*\) but it doesn't work, and \(*\) only highlights the right ). What am I doing wrong, and how can I fix this?
Top

Posted by Nick Gammon   Australia  (23,133 posts)  Bio   Forum Administrator
Date Reply #1 on Wed 23 Jan 2008 07:03 PM (UTC)
Message
\(\*\) would only match a bracket, a star and a bracket.

You need .+ to match stuff inside the brackets, and I would put an extra ? to make it non-greedy or it might try to match things between multiple brackets. Also check "repeat on same line". This worked for me:


<triggers>
  <trigger
   custom_colour="6"
   enabled="y"
   match="\(.+?\)"
   regexp="y"
   repeat="y"
   sequence="100"
  >
  </trigger>
</triggers>


- Nick Gammon

www.gammon.com.au, www.mushclient.com
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.


8,599 views.

It is now over 60 days since the last post. This thread is closed.     Refresh page

Go to topic:           Search the forum


[Go to top] top

Information and images on this site are licensed under the Creative Commons Attribution 3.0 Australia License unless stated otherwise.