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 ➜ Bug reports ➜ RegExp alias with \d problem

RegExp alias with \d problem

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


Posted by Sil   Poland  (4 posts)  Bio
Date Tue 02 Mar 2004 03:40 AM (UTC)
Message
Hello,

I found a problem with scripting a regexp alias that has a decimal digit in its pattern.
Using JScript, I've done it like this:

world.AddAlias("somealias", "abc\\d", "command", 1 + 128, "");

In the GUI it shows the pattern as it should be: "abc\d", the RegExp box is checked and the alias looks just fine with one exception: it matches only when "abc\d" is typed in.
But then again, changing any of the alias' options in the GUI makes it match properly on "abc<digit>".

There's no such problem with triggers, only aliases.
Top

Posted by Nick Gammon   Australia  (23,140 posts)  Bio   Forum Administrator
Date Reply #1 on Tue 02 Mar 2004 04:09 AM (UTC)
Message
You are right, there is a bug in AddAlias that no-one has noticed before now. :)

It is incorrectly checking a bit when it looks to see if the match text is a regular expression. That will be corrected in the next version, however for now, do this:


world.AddAlias("somealias", "abc\\d", "command", 1 + 128, "");
world.SetAliasOption("somealias", "match", "abc\\d");

The extra line will force it to recompute the regular expression and it will work correctly this time around.

- 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.


9,347 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.