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
➜ Lua
➜ How do you wait.match with or ( | )
|
How do you wait.match with or ( | )
|
It is now over 60 days since the last post. This thread is closed.
Refresh page
| Posted by
| Avocado
(13 posts) Bio
|
| Date
| Tue 26 Nov 2013 03:11 AM (UTC) |
| Message
| local x = wait.match ("*here you see*", 5)
Above line is what I use to match a string, but I would like to try to match more than one string.
What would the line look like?
Let's say if I 'Send ("Look")'
and following two lines show up:
John is here.
Mike is here.
Sam is here.
How do you write
local x = wait.match ("*here you see*", 5)
so that you can write something like:
local x = wait.match ("Sam*" or "Mike*", 5)
in Lua? | | Top |
|
| Posted by
| Nick Gammon
Australia (23,173 posts) Bio
Forum Administrator |
| Date
| Reply #1 on Tue 26 Nov 2013 04:07 AM (UTC) |
| Message
| Use a regular expression.
 |
Regular expressions
- Regular expressions (as used in triggers and aliases) are documented on the Regular expression tips forum page.
- Also see how Lua string matching patterns work, as documented on the Lua string.find page.
|
local x = wait.regexp ("^(Sam|Mike)(.*)", 5)
|
- Nick Gammon
www.gammon.com.au, www.mushclient.com | | Top |
|
| Posted by
| Avocado
(13 posts) Bio
|
| Date
| Reply #2 on Tue 26 Nov 2013 06:00 AM (UTC) |
| Message
| Thank you Nick!
That worked out great!
| | 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.
15,148 views.
It is now over 60 days since the last post. This thread is closed.
Refresh page
top