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
➜ string.find(string, pattern|pattern) -- ????
string.find(string, pattern|pattern) -- ????
|
It is now over 60 days since the last post. This thread is closed.
Refresh page
Posted by
| ThumpieBunnyEve
(10 posts) Bio
|
Date
| Sat 16 May 2009 07:00 PM (UTC) Amended on Sat 16 May 2009 07:02 PM (UTC) by ThumpieBunnyEve
|
Message
| No matter what i do in a Lua script, i cant get a pattern to include an OR.
solo = "http://ggg.cnn.com http://www.cnn.com www.cnn.com monkey-tribble-duck w.cnn.com w ww oog.nomface.com www wwww w|www wW W WW WWW ouote o.ote.com.nom ___ gggg quote q.ote.com.nom.con WWWW WWW. http://www.cnn.com"
luke = "([hHtTpPsSmMaAiIlLoO]+://[%S]*[%w#/])|([wW]+[wW]+[wW]+[\.])"
leia = "[hHtTpPsSmMaAiIlLoO]+://[%S]*[%w#/]|[wW]+[wW]+[wW]+[\.]"
r2d2 = "(([hHtTpPsSmMaAiIlLoO]+://[%S]*[%w#/])|([wW]+[wW]+[wW]+[\.]))"
c3p0 = "([hHtTpPsSmMaAiIlLoO]+://[%S]*[%w#/])*([wW]+[wW]+[wW]+[\.])*([hHtTpPsSmMaAiIlLoO]+://[%S]*[%w#/])"
jaba = "(([hHtTpPsSmMaAiIlLoO]+://[%S]*[%w#/])*([wW]+[wW]+[wW]+[\.])*([hHtTpPsSmMaAiIlLoO]+://[%S]*[%w#/]))"
boba = "[hHtTpPsSmMaAiIlLoO]+://[%S]*[%w#/]*[wW]+[wW]+[wW]+[\.]*[hHtTpPsSmMaAiIlLoO]+://[%S]*[%w#/]"
yoda = string.find(solo, luke) -- fails
yoda = string.find(solo, leia) -- fails
yoda = string.find(solo, r2d2) -- fails
yoda = string.find(solo, c3p0) -- fails
yoda = string.find(solo, jaba) -- fails
yoda = string.find(solo, boba) -- fails
I'm out of options here X_X;
There is no way to put an OR into the pattern of a string.find is there?
| Top |
|
Posted by
| WillFa
USA (525 posts) Bio
|
Date
| Reply #1 on Sat 16 May 2009 08:06 PM (UTC) Amended on Sat 16 May 2009 08:22 PM (UTC) by WillFa
|
Message
| Lua pattern matching isn't the same as PCRE. The rex library has all the pcre syntax you're looking for.
The simple answer to your question is "No. Use 'or' between 2 string.find calls" :)
yoda = string.find(solo, "[hHtTpPsSmMaAiIlLoO]+://[%S]*[%w#/]")
or string.find(solo, "www") or string.find(solo, "WWW")
Lua Pattern matching doesn't support an | as "OR", or {}s for repetition quantifiers (i.e. %w{2,3} doesn't match at least 2 but no more than 3 alpha chars.)
Lua patterns tend to run a bit faster, since they're more simplistic. The speed of the language generally matches or exceeds the speed of compiling a rex regexp.
function IsUrl (darth)
local vader = darth:lower()
if vader:find("^http://") or vader:find("^mailto://")
or vader:find("^www") then
return true
end
end
That should accomplish what you're looking for. | Top |
|
Posted by
| Nick Gammon
Australia (23,158 posts) Bio
Forum Administrator |
Date
| Reply #2 on Sun 17 May 2009 05:11 AM (UTC) |
Message
| |
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.
18,297 views.
It is now over 60 days since the last post. This thread is closed.
Refresh page
top