[Home] [Downloads] [Search] [Help/forum]

Gammon Software Solutions forum

See www.mushclient.com/spam for dealing with forum spam. Please read the MUSHclient FAQ!

[Folder]  Entire forum
-> [Folder]  MUSHclient
. -> [Folder]  General
. . -> [Subject]  BUG of LUA or Muchclient?

Home  |  Users  |  Search  |  FAQ
Username:
Register forum user name
Password:
Forgotten password?
(New message)
Subject: BUG of LUA or Muchclient?
Name:
Your forum user name.
Register forum user name
Password:
Your forum password.
Forgotten password?
Message:
Message to be posted (in English, please).
Forum codes:
Check this if your message uses 'forum codes' or templates (auto-detected for new posts).
Forum codes Templates

Save this message ...


Subject review (reverse sequence)

Posted by Paragate   (5 posts)  [Biography] bio
Date Tue 08 Mar 2011 07:20 PM (UTC)  quote  ]
Message
Thank you very much for the reply.
The generic function solved my problem

I used:
local str=table.concat(s,",") first before I use
string.find(str,pat)

Thanks for the replay again.


Nick Gammon said:

Paragate said:

If one has a string like this:
s={"a","b","c","d-e"}

Then string.find(s,"d-e") will return nil.


No, it doesn't. Test case:


s={"a","b","c","d-e"}

a = string.find(s,"d-e")


Results:

Run-time error
World: Smaug
Immediate execution
[string "Immediate"]:3: bad argument #1 to 'find' (string expected, got table)
stack traceback:
        [C]: in function 'find'
        [string "Immediate"]:3: in main chunk


You can't pass a table to string.find. So, it's not a bug.
[Go to top] top

Posted by Nick Gammon   Australia  (18,769 posts)  [Biography] bio   Forum Administrator
Date Tue 08 Mar 2011 05:56 AM (UTC)  quote  ]
Message
Paragate said:

If one has a string like this:
s={"a","b","c","d-e"}

Then string.find(s,"d-e") will return nil.


No, it doesn't. Test case:


s={"a","b","c","d-e"}

a = string.find(s,"d-e")


Results:

Run-time error
World: Smaug
Immediate execution
[string "Immediate"]:3: bad argument #1 to 'find' (string expected, got table)
stack traceback:
        [C]: in function 'find'
        [string "Immediate"]:3: in main chunk


You can't pass a table to string.find. So, it's not a bug.

- Nick Gammon

www.gammon.com.au, www.mushclient.com
[Go to top] top

Posted by Twisol   USA  (2,229 posts)  [Biography] bio
Date Tue 08 Mar 2011 (UTC)  quote  ]
Message
Paragate said:

If one has a string like this:
s={"a","b","c","d-e"}

This isn't a string, it's an array of strings. If you want to find a specific string within an array, you do:

local find_this = "d-e"

local idx = nil
for i,str in ipairs(s) do
  if str == find_this then
    idx = i
    break
  end
end

if idx then
  -- it was found
end


You can even wrap this up as a generic function:
table.find = function(t, match)
  for k, v in pairs(t) do
    if v == match then
      return k
    end
  end
  return nil
end


-- Usage:
local t = {"foo", "bar", "baz"}
local i = table.find(t, "bar")
Note(i) -- should be 2

'Soludra' on Achaea

Blog: http://jonathan.com/
GitHub: http://github.com/Twisol
[Go to top] top

Posted by Paragate   (5 posts)  [Biography] bio
Date Mon 07 Mar 2011 11:31 PM (UTC)  quote  ]

Amended on Tue 08 Mar 2011 07:16 PM (UTC) by Paragate

Message
If one has a string like this:
s={"a","b","c","d-e"}

Then string.find(s,"d-e") will return nil.

The pattern I want to find is saved in a variable and it keeps changing, we don't know if the pattern to find has "-"
or not, so to add "%" is not a good option for me.

Anyway to solve this? thanks
[Go to top] 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.


1,189 views.

[Reply to this subject]  Reply to this subject   [New subject]  Start a new subject   [Refresh] Refresh page

Go to topic:           Search the forum


[Go to top] top

[Home]

Written by Nick Gammon - 5K

Comments to: Gammon Software support
[RH click to get RSS URL] Forum RSS feed ( http://www.gammon.com.au/rss/forum.xml )

[Best viewed with any browser - 2K]    [Internet Contents Rating Association (ICRA) - 2K]    [Web site powered by FutureQuest.Net]